mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
0a2034f7e4
Closes #3623 - Move hamburger logic to action with terrible name, "toggleSidebarOrGoHome" - Move ".js-close-sidebar" events to a document.on(event, *selector*, f) to make sure they attach even when the js-close-sidebars aren't on page (ie, hidenav)
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
import {mobileQuery, responsiveAction} from 'ghost/utils/mobile';
|
|
|
|
var PostsView = Ember.View.extend({
|
|
target: Ember.computed.alias('controller'),
|
|
classNames: ['content-view-container'],
|
|
tagName: 'section',
|
|
|
|
mobileInteractions: function () {
|
|
Ember.run.scheduleOnce('afterRender', this, function () {
|
|
var self = this;
|
|
|
|
$(window).resize(function () {
|
|
if (!mobileQuery.matches) {
|
|
self.send('resetContentPreview');
|
|
}
|
|
});
|
|
|
|
// ### Show content preview when swiping left on content list
|
|
$('.manage').on('click', '.content-list ol li', function (event) {
|
|
responsiveAction(event, '(max-width: 800px)', function () {
|
|
self.send('showContentPreview');
|
|
});
|
|
});
|
|
|
|
// ### Hide content preview
|
|
$('.manage').on('click', '.content-preview .button-back', function (event) {
|
|
responsiveAction(event, '(max-width: 800px)', function () {
|
|
self.send('hideContentPreview');
|
|
});
|
|
});
|
|
});
|
|
}.on('didInsertElement'),
|
|
});
|
|
|
|
export default PostsView;
|