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:
commit
3d8a0de9a1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue