0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00
Fix typofail in pagination-controller mixin
This commit is contained in:
Hannah Wolfe 2015-04-09 15:36:42 +01:00
commit 8773d02b1a

View file

@ -53,7 +53,7 @@ var PaginationControllerMixin = Ember.Mixin.create({
resetPagination: function () {
this.set('paginationSettings.page', 1);
this.store.setMetaDataFor('tag', {pagination: undefined});
this.store.setMetadataFor('tag', {pagination: undefined});
}
}
});