ember-basic-dropdown
Advanced tools
Comparing version 0.7.2 to 0.7.3
@@ -99,4 +99,4 @@ import Ember from 'ember'; | ||
this.set('publicAPI.isOpen', true); | ||
run.scheduleOnce('afterRender', this, this.addGlobalEvents); | ||
run.scheduleOnce('afterRender', this, this.repositionDropdown); | ||
this.addGlobalEventsTimer = run.scheduleOnce('afterRender', this, this.addGlobalEvents); | ||
this.repositionDropdownTimer = run.scheduleOnce('afterRender', this, this.repositionDropdown); | ||
let onOpen = this.get('onOpen'); | ||
@@ -110,2 +110,5 @@ if (onOpen) { onOpen(this.get('publicAPI'), e); } | ||
this.set('_dropdownPositionClass', null); | ||
run.cancel(this.addGlobalEventsTimer); | ||
run.cancel(this.repositionDropdownTimer); | ||
this.addGlobalEventsTimer = this.repositionDropdownTimer = null; | ||
this.removeGlobalEvents(); | ||
@@ -112,0 +115,0 @@ let onClose = this.get('onClose'); |
{ | ||
"name": "ember-basic-dropdown", | ||
"version": "0.7.2", | ||
"version": "0.7.3", | ||
"description": "The default blueprint for ember-cli addons.", | ||
@@ -5,0 +5,0 @@ "directories": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15957
280