Searched defs:plug (Results 1 - 3 of 3) sorted by relevance
/yui3/src/node/js/ |
H A D | node-pluginhost.js | 10 * @method plug 16 Y.Node.plug = function() { 19 Y.Plugin.Host.plug.apply(Y.Base, args); 40 // allow batching of plug/unplug via NodeList 42 Y.NodeList.prototype.plug = function() { 45 Y.Node.prototype.plug.apply(Y.one(node), args);
|
/yui3/src/pluginhost/js/ |
H A D | PluginHost.js | 14 * It adds <a href="#method_plug">plug</a> and <a href="#method_unplug">unplug</a> methods to the augmented class, which can 19 * the "plugins" property. Supported values for the "plugins" property are those defined by the <a href="#method_plug">plug</a> method. 46 * @method plug 59 plug: function(Plugin, config) { 64 this.plug(Plugin[i]); 88 else { Y.log("Attempt to plug in an invalid plugin. Host:" + this + ", Plugin:" + Plugin); } 147 * Base.plug static method) and any plugins passed to the
|
H A D | PluginHostConfig.js | 25 plug = [], 42 Y.mix(plug, classPlug, true); 46 for (pluginClassName in plug) { 47 if (plug.hasOwnProperty(pluginClassName)) { 49 this.plug(plug[pluginClassName]); 56 this.plug(config.plugins); 64 * @method plug 72 PluginHost.plug = function(hostClass, plugin, config) { 73 // Cannot plug int [all...] |
Completed in 36 milliseconds