0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Merge pull request #2168 from halfdan/deregister

Rename unregisterFilter to deregisterFilter
This commit is contained in:
Hannah Wolfe 2014-02-10 12:58:02 +00:00
commit 6b4a1ffcc9
3 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ var proxy = {
filters: { filters: {
register: filters.registerFilter.bind(filters), register: filters.registerFilter.bind(filters),
unregister: filters.unregisterFilter.bind(filters) deregister: filters.deregisterFilter.bind(filters)
}, },
helpers: { helpers: {
register: helpers.registerThemeHelper.bind(helpers), register: helpers.registerThemeHelper.bind(helpers),

View file

@ -38,7 +38,7 @@ Filters.prototype.registerFilter = function (name, priority, fn) {
}; };
// Unregister a filter callback function // Unregister a filter callback function
Filters.prototype.unregisterFilter = function (name, priority, fn) { Filters.prototype.deregisterFilter = function (name, priority, fn) {
// Curry the priority optional parameter to a default of 5 // Curry the priority optional parameter to a default of 5
if (_.isFunction(priority)) { if (_.isFunction(priority)) {
fn = priority; fn = priority;
@ -80,4 +80,4 @@ Filters.prototype.doFilter = function (name, args) {
}; };
module.exports = new Filters(); module.exports = new Filters();
module.exports.Filters = Filters; module.exports.Filters = Filters;

View file

@ -57,7 +57,7 @@ describe('Apps', function () {
it('creates a ghost proxy', function () { it('creates a ghost proxy', function () {
should.exist(appProxy.filters); should.exist(appProxy.filters);
should.exist(appProxy.filters.register); should.exist(appProxy.filters.register);
should.exist(appProxy.filters.unregister); should.exist(appProxy.filters.deregister);
should.exist(appProxy.helpers); should.exist(appProxy.helpers);
should.exist(appProxy.helpers.register); should.exist(appProxy.helpers.register);