Skip to content

Commit

Permalink
fix basis-config content lost on attribute patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Apr 22, 2016
1 parent 43663c6 commit 2ebf557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = function(options){

if (attrName) {
var oldValue = script.attribs[attrName].trim();
script.attribs[attrName] = (oldValue ? '\n,' : '') + 'devInfoResolver:' + registratorName;
script.attribs[attrName] = (oldValue ? oldValue + '\n,' : '') + 'devInfoResolver:' + registratorName;
}
}
});
Expand Down

0 comments on commit 2ebf557

Please sign in to comment.