PHP Classes

File: modules/system/tests/js/fixtures/framework/TestListener.js

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/tests/js/fixtures/framework/TestListener.js   Download  
File: modules/system/tests/js/fixtures/framework/TestListener.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 409 bytes
 

Contents

Class file image Download
/* globals window */ ((Snowboard) => { class TestListener extends Snowboard.Singleton { listens() { return { eventOne: 'eventOne', eventTwo: 'notExists' }; } eventOne(arg) { this.eventResult = 'Event called with arg ' + arg; } } Snowboard.addPlugin('test', TestListener); })(window.Snowboard);