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

Closes #5120
This commit is contained in:
Matt Enlow 2015-04-09 07:56:08 -06:00
parent e0369d207f
commit 4dc9abb670

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});
}
}
});