Skip to content

Commit

Permalink
fix(placeholder): add missing return
Browse files Browse the repository at this point in the history
fixes #414
  • Loading branch information
lostip committed Nov 15, 2014
1 parent 735c562 commit 799a4ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textAngular.js
Original file line number Diff line number Diff line change
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 799a4ff

Please sign in to comment.