Files
clay/dev/custom-fn.js
T
2016-01-19 14:13:50 -08:00

16 lines
371 B
JavaScript

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