0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Merge pull request #3572 from rwjblue/fix-keyboard-nav-for-posts

Ensure keyboard navigation matches custom post sorting.
This commit is contained in:
Hannah Wolfe 2014-08-03 14:57:35 +01:00
commit 3d8a0de9a1

View file

@ -38,7 +38,7 @@ var PostsRoute = Ember.Route.extend(SimpleAuth.AuthenticatedRouteMixin, Shortcut
stepThroughPosts: function (step) {
var currentPost = this.get('controller.currentPost'),
posts = this.get('controller.model'),
posts = this.get('controller.arrangedContent'),
length = posts.get('length'),
newPosition;