Files
clay/dev/custom-fn.js
T

15 lines
305 B
JavaScript

'use strict';
module.exports = function() {
var Api = this;
var testHandler = function() {
console.debug('KEEGAN: EVENT', this);
Api.getItemByAppKey('background').off(testHandler);
};
Api.getItemByAppKey('background').on('change', testHandler);
console.debug('custom fn worked');
};