Searched defs:Plugin (Results 1 - 3 of 3) sorted by relevance

/yui3/src/plugin/js/
H A Dplugin.js2 * Provides the base Plugin class, which plugin developers should extend, when creating custom plugins
8 * The base class for all Plugin instances.
10 * @class Plugin.Base
14 function Plugin(config) { function
15 if (! (this.hasImpl && this.hasImpl(Y.Plugin.Base)) ) {
16 Plugin.superclass.constructor.apply(this, arguments);
18 Plugin.prototype.initializer.apply(this, arguments);
23 * Object defining the set of attributes supported by the Plugin.Base class
29 Plugin.ATTRS = {
36 * @type Plugin
17 } else { class
[all...]
/yui3/src/autocomplete/js/
H A Dautocomplete-plugin.js13 Y.one('#my-input').plug(Y.Plugin.AutoComplete, {
19 @class Plugin.AutoComplete
23 var Plugin = Y.Plugin; variable
42 Plugin.AutoComplete = ACListPlugin;
43 Plugin.AutoCompleteList = ACListPlugin;
/yui3/src/editor/js/
H A Deditor-bidi.js3 * Plugin for Editor to support BiDirectional (bidi) text operations.
4 * @class Plugin.EditorBidi
110 * instead, but that would make Y.Plugin.EditorBidi.blockParent
253 Y.namespace('Plugin');
255 Y.Plugin.EditorBidi = EditorBidi;
259 * This property is added to the `Y.Plugin.ExecCommands.COMMANDS`
262 * @for Plugin.ExecCommand
266 Y.Plugin.ExecCommand.COMMANDS.bidi = function(cmd, direction) {

Completed in 1644 milliseconds