File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,8 @@ var lineage_hunter = function () {
22
22
//create the more complex patternLineage object too
23
23
var l = {
24
24
"lineagePattern" : ancestorPattern . patternPartial ,
25
- "lineagePath" : "../../patterns/" + ancestorPattern . getPatternLink ( patternlab )
25
+ "lineagePath" : "../../patterns/" + ancestorPattern . patternLink
26
26
} ;
27
-
28
27
if ( ancestorPattern . patternState ) {
29
28
l . lineageState = ancestorPattern . patternState ;
30
29
}
@@ -38,7 +37,7 @@ var lineage_hunter = function () {
38
37
//create the more complex patternLineage object in reverse
39
38
var lr = {
40
39
"lineagePattern" : pattern . patternPartial ,
41
- "lineagePath" : "../../patterns/" + pattern . getPatternLink ( patternlab )
40
+ "lineagePath" : "../../patterns/" + pattern . patternLink
42
41
} ;
43
42
if ( pattern . patternState ) {
44
43
lr . lineageState = pattern . patternState ;
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ var pattern_assembler = function () {
94
94
function addPattern ( pattern , patternlab ) {
95
95
96
96
//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 ;
98
98
99
99
//only push to array if the array doesn't contain this pattern
100
100
var isNew = true ;
You can’t perform that action at this time.
0 commit comments