Skip to content

Commit

Permalink
Just code style
Browse files Browse the repository at this point in the history
  • Loading branch information
peec committed Aug 18, 2015
1 parent 503d606 commit e2a38ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions addon/components/paper-autocomplete-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ export default Ember.Component.extend({
role: 'presentation',
stickToElement: null,

init () {
init() {
this._super(...arguments);

this._resizeWindowEvent = Ember.run.bind(this, this.resizeWindowEvent);
},

Expand Down Expand Up @@ -91,7 +90,7 @@ export default Ember.Component.extend({
}
}),

resizeWindowEvent () {
resizeWindowEvent() {
this.positionDropdown();
},

Expand Down
2 changes: 1 addition & 1 deletion addon/components/paper-backdrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default Ember.Component.extend(TransitionMixin, {
// TransitionMixin:
transitionClass: 'ng',
shouldTransition: Ember.computed.bool('opaque'),
addDestroyedElementClone (parent, index, clone) {
addDestroyedElementClone(parent, index, clone) {
parent.append(clone);
},

Expand Down

0 comments on commit e2a38ae

Please sign in to comment.