Skip to content

Commit

Permalink
Merge pull request #558 from giuseppepaul/dev-issue-91-edition-node-gulp
Browse files Browse the repository at this point in the history
Fixed the path to the plugins object. Issue 91 on the edition-node-gulp repo
  • Loading branch information
bmuenzenmeyer authored Nov 16, 2016
2 parents ef92a93 + ccaa25d commit f5bab2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/ui_builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ var ui_builder = function () {
output += 'var viewAllPaths = ' + JSON.stringify(patternlab.viewAllPaths) + ';' + eol;

//plugins
output += 'var plugins = ' + JSON.stringify(patternlab.plugins) + ';' + eol;
output += 'var plugins = ' + JSON.stringify(patternlab.plugins || []) + ';' + eol;

//smaller config elements
output += 'var defaultShowPatternInfo = ' + (patternlab.config.defaultShowPatternInfo ? patternlab.config.defaultShowPatternInfo : 'false') + ';' + eol;
Expand Down

0 comments on commit f5bab2a

Please sign in to comment.