2015-02-12 21:22:32 -07:00
|
|
|
import Ember from 'ember';
|
2014-09-15 22:55:37 -06:00
|
|
|
|
2014-10-24 21:09:50 +00:00
|
|
|
// Routes that extend MobileIndexRoute need to implement
|
2014-09-15 22:55:37 -06:00
|
|
|
// desktopTransition, a function which is called when
|
|
|
|
// the user resizes to desktop levels.
|
2015-08-19 12:55:40 +01:00
|
|
|
export default Ember.Route.extend({
|
2014-09-15 22:55:37 -06:00
|
|
|
desktopTransition: Ember.K,
|
2015-11-20 12:26:34 -05:00
|
|
|
_callDesktopTransition: null,
|
2014-09-15 22:55:37 -06:00
|
|
|
|
2015-11-20 12:26:34 -05:00
|
|
|
mediaQueries: Ember.inject.service(),
|
2014-09-15 22:55:37 -06:00
|
|
|
|
2015-11-20 12:26:34 -05:00
|
|
|
activate: function () {
|
|
|
|
this._callDesktopTransition = () => {
|
|
|
|
if (!this.get('mediaQueries.isMobile')) {
|
|
|
|
this.desktopTransition();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ember.addObserver(this, 'mediaQueries.isMobile', this._callDesktopTransition);
|
2014-09-15 22:55:37 -06:00
|
|
|
},
|
|
|
|
|
2015-11-20 12:26:34 -05:00
|
|
|
deactivate: function () {
|
|
|
|
if (this._callDesktopTransition) {
|
|
|
|
Ember.removeObserver(this, 'mediaQueries.isMobile', this._callDesktopTransition);
|
|
|
|
this._callDesktopTransition = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-15 22:55:37 -06:00
|
|
|
});
|