Skip to content
This repository was archived by the owner on Apr 5, 2023. It is now read-only.

Commit 7342d55

Browse files
committed
Revert "the fix?"
This reverts commit 8d2c3a0.
1 parent 893373b commit 7342d55

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

addon/components/select-component.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -675,15 +675,11 @@ export default Ember.Component.extend(
675675
},
676676

677677
focusIn: function() {
678-
Ember.run.schedule('actions', () => {
679-
this.set('hasFocus', true);
680-
});
678+
return this.set('hasFocus', true);
681679
},
682680

683681
focusOut: function() {
684-
Ember.run.schedule('actions', () => {
685-
this.set('hasFocus', false);
686-
});
682+
return this.set('hasFocus', false);
687683
},
688684

689685
actions: {

0 commit comments

Comments
 (0)