File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,9 +22,8 @@ var lineage_hunter = function () {
2222 //create the more complex patternLineage object too
2323 var l = {
2424 "lineagePattern" : ancestorPattern . patternPartial ,
25- "lineagePath" : "../../patterns/" + ancestorPattern . getPatternLink ( patternlab )
25+ "lineagePath" : "../../patterns/" + ancestorPattern . patternLink
2626 } ;
27-
2827 if ( ancestorPattern . patternState ) {
2928 l . lineageState = ancestorPattern . patternState ;
3029 }
@@ -38,7 +37,7 @@ var lineage_hunter = function () {
3837 //create the more complex patternLineage object in reverse
3938 var lr = {
4039 "lineagePattern" : pattern . patternPartial ,
41- "lineagePath" : "../../patterns/" + pattern . getPatternLink ( patternlab )
40+ "lineagePath" : "../../patterns/" + pattern . patternLink
4241 } ;
4342 if ( pattern . patternState ) {
4443 lr . lineageState = pattern . patternState ;
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ var pattern_assembler = function () {
9494 function addPattern ( pattern , patternlab ) {
9595
9696 //add the link to the global object
97- patternlab . data . link [ pattern . patternPartial ] = '/patterns/' + pattern . getPatternLink ( patternlab ) ;
97+ patternlab . data . link [ pattern . patternPartial ] = '/patterns/' + pattern . patternLink ;
9898
9999 //only push to array if the array doesn't contain this pattern
100100 var isNew = true ;
You can’t perform that action at this time.
0 commit comments