mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 18:34:39 +03:00
30 lines
863 B
JavaScript
30 lines
863 B
JavaScript
|
import mobileQuery from 'ghost/utils/mobile';
|
||
|
|
||
|
//Routes that extend MobileIndexRoute need to implement
|
||
|
// desktopTransition, a function which is called when
|
||
|
// the user resizes to desktop levels.
|
||
|
var MobileIndexRoute = Ember.Route.extend({
|
||
|
desktopTransition: Ember.K,
|
||
|
|
||
|
activate: function attachDesktopTransition() {
|
||
|
this._super();
|
||
|
mobileQuery.addListener(this.desktopTransitionMQ);
|
||
|
},
|
||
|
|
||
|
deactivate: function removeDesktopTransition() {
|
||
|
this._super();
|
||
|
mobileQuery.removeListener(this.desktopTransitionMQ);
|
||
|
},
|
||
|
|
||
|
setDesktopTransitionMQ: function () {
|
||
|
var self = this;
|
||
|
this.set('desktopTransitionMQ', function desktopTransitionMQ() {
|
||
|
if (!mobileQuery.matches) {
|
||
|
self.desktopTransition();
|
||
|
}
|
||
|
});
|
||
|
}.on('init')
|
||
|
});
|
||
|
|
||
|
export default MobileIndexRoute;
|