Skip to content

Commit

Permalink
fix clear typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Mar 4, 2013
1 parent 4172dbf commit 341a87d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/main.coffee
Expand Up @@ -24,7 +24,7 @@ class Module extends EventEmitter
return @

clear: (silent) ->
@remove k, silent for k,v of @_props
@remove k, silent for k,v of @_.props
return @

has: (k) -> @_.props[k]?
Expand Down
2 changes: 1 addition & 1 deletion mixer.js
Expand Up @@ -415,7 +415,7 @@ require.register("mixer/dist/main.js", function(exports, require, module){

Module.prototype.clear = function(silent) {
var k, v, _ref;
_ref = this._props;
_ref = this._.props;
for (k in _ref) {
v = _ref[k];
this.remove(k, silent);
Expand Down
2 changes: 1 addition & 1 deletion mixer.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 341a87d

Please sign in to comment.