Skip to content

Commit

Permalink
Merge pull request #415 from lostip/master
Browse files Browse the repository at this point in the history
fix(placeholder): add missing return

fix #414
  • Loading branch information
Simeon Cheeseman committed Nov 24, 2014
2 parents 735c562 + 799a4ff commit b7cf482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textAngular.js
Expand Up @@ -134,7 +134,7 @@ See README.md or https://github.com/fraywing/textAngular/wiki for requirements a

// use as: addCSSRule("header", "float: left");
addCSSRule = function(selector, rules) {
_addCSSRule(sheet, selector, rules);
return _addCSSRule(sheet, selector, rules);
};
_addCSSRule = function(_sheet, selector, rules){
var insertIndex;
Expand Down

0 comments on commit b7cf482

Please sign in to comment.