9b2fb14e51
This is mostly deprecation fixes and blueprint changes. There are some dependency updates too; the changes to Ember Basic Dropdown necessitated changing it to angle bracket component invocation. The conversion of the rest of the templates will happen separately.
24 lines
708 B
JavaScript
24 lines
708 B
JavaScript
import Ember from 'ember';
|
|
import Mixin from '@ember/object/mixin';
|
|
import { assert } from '@ember/debug';
|
|
import { on } from '@ember/object/evented';
|
|
|
|
export default Mixin.create({
|
|
visibilityHandler() {
|
|
assert('visibilityHandler needs to be overridden in the Component', false);
|
|
},
|
|
|
|
setupDocumentVisibility: on('init', function() {
|
|
if (!Ember.testing) {
|
|
this.set('_visibilityHandler', this.visibilityHandler.bind(this));
|
|
document.addEventListener('visibilitychange', this._visibilityHandler);
|
|
}
|
|
}),
|
|
|
|
removeDocumentVisibility: on('init', function() {
|
|
if (!Ember.testing) {
|
|
document.removeEventListener('visibilitychange', this._visibilityHandler);
|
|
}
|
|
}),
|
|
});
|