Skip to content

Commit

Permalink
fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Oct 27, 2015
1 parent 8bdedf3 commit 5fb20da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
},

// reserved for canonical behavior
attributeChangedCallback: function(name) {
attributeChangedCallback: function(name, oldValue, newValue) {
this._attributeChangedImpl(name); // abstract
this._doBehavior('attributeChanged', arguments); // abstract
this._doBehavior('attributeChanged', [name, oldValue, newValue]); // abstract
},

_attributeChangedImpl: function(name) {
Expand Down
2 changes: 1 addition & 1 deletion src/standard/events.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
listeners: {},

_listenListeners: function(listeners) {
for (eventName in listeners) {
for (var eventName in listeners) {
this.listen(this, eventName, listeners[eventName]);
}
},
Expand Down

0 comments on commit 5fb20da

Please sign in to comment.