Sha256: 92709804bcab8d5d6ff9bfab283d0d2949abdb8163c4be7b282d3a6e97fbec8c
Contents?: true
Size: 754 Bytes
Versions: 10
Compression:
Stored size: 754 Bytes
Contents
/** * @class Ext.direct.Event * A base class for all Ext.direct events. An event is * created after some kind of interaction with the server. * The event class is essentially just a data structure * to hold a Direct response. */ Ext.define('Ext.direct.Event', { /* Begin Definitions */ alias: 'direct.event', requires: ['Ext.direct.Manager'], /* End Definitions */ status: true, /** * Creates new Event. * @param {Object} config (optional) Config object. */ constructor: function(config) { Ext.apply(this, config); }, /** * Return the raw data for this event. * @return {Object} The data from the event */ getData: function(){ return this.data; } });
Version data entries
10 entries across 10 versions & 2 rubygems