Searched refs:Plugin (Results 1 - 25 of 166) sorted by relevance

1234567

/yui3/src/pluginhost/js/
H A DPluginHost.js31 * @class Plugin.Host
50 * a "cfg" property specifying the configuration for the Plugin.
59 plug: function(Plugin, config) {
62 if (L.isArray(Plugin)) {
63 for (i = 0, ln = Plugin.length; i < ln; i++) {
64 this.plug(Plugin[i]);
67 if (Plugin && !L.isFunction(Plugin)) {
68 config = Plugin.cfg;
69 Plugin
[all...]
/yui3/src/scrollview/js/
H A Dscrollview.js16 Y.Base.plug(Y.ScrollView, Y.Plugin.ScrollViewScrollbars);
/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/pjax/js/
H A Dpjax-plugin.js12 @class Plugin.Pjax
17 Y.Plugin.Pjax = Y.Base.create('pjaxPlugin', Y.Pjax, [Y.Plugin.Base], {
/yui3/build/pluginhost-base/
H A Dpluginhost-base-debug.js33 * @class Plugin.Host
52 * a "cfg" property specifying the configuration for the Plugin.
61 plug: function(Plugin, config) {
64 if (L.isArray(Plugin)) {
65 for (i = 0, ln = Plugin.length; i < ln; i++) {
66 this.plug(Plugin[i]);
69 if (Plugin && !L.isFunction(Plugin)) {
70 config = Plugin.cfg;
71 Plugin
[all...]
/yui3/build/pjax-plugin/
H A Dpjax-plugin-debug.js14 @class Plugin.Pjax
19 Y.Plugin.Pjax = Y.Base.create('pjaxPlugin', Y.Pjax, [Y.Plugin.Base], {
/yui3/build/autocomplete-plugin/
H A Dautocomplete-plugin-debug.js15 Y.one('#my-input').plug(Y.Plugin.AutoComplete, {
21 @class Plugin.AutoComplete
25 var Plugin = Y.Plugin;
44 Plugin.AutoComplete = ACListPlugin;
45 Plugin.AutoCompleteList = ACListPlugin;
/yui3/build/scrollview/
H A Dscrollview-debug.js18 Y.Base.plug(Y.ScrollView, Y.Plugin.ScrollViewScrollbars);
/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/base/js/
H A DBasePluginHost.js2 * The base-pluginhost submodule adds Plugin support to Base, by augmenting Base with
3 * Plugin.Host and setting up static (class level) Base.plug and Base.unplug methods.
11 PluginHost = Y.Plugin.Host;
16 * Alias for <a href="Plugin.Host.html#method_Plugin.Host.plug">Plugin.Host.plug</a>. See aliased
25 * Alias for <a href="Plugin.Host.html#method_Plugin.Host.unplug">Plugin.Host.unplug</a>. See the
/yui3/build/base-pluginhost/
H A Dbase-pluginhost-debug.js4 * The base-pluginhost submodule adds Plugin support to Base, by augmenting Base with
5 * Plugin.Host and setting up static (class level) Base.plug and Base.unplug methods.
13 PluginHost = Y.Plugin.Host;
18 * Alias for <a href="Plugin.Host.html#method_Plugin.Host.plug">Plugin.Host.plug</a>. See aliased
27 * Alias for <a href="Plugin.Host.html#method_Plugin.Host.unplug">Plugin.Host.unplug</a>. See the
/yui3/build/plugin/
H A Dplugin-debug.js4 * Provides the base Plugin class, which plugin developers should extend, when creating custom plugins
10 * The base class for all Plugin instances.
12 * @class Plugin.Base
16 function Plugin(config) {
17 if (! (this.hasImpl && this.hasImpl(Y.Plugin.Base)) ) {
18 Plugin.superclass.constructor.apply(this, arguments);
20 Plugin.prototype.initializer.apply(this, arguments);
25 * Object defining the set of attributes supported by the Plugin.Base class
31 Plugin.ATTRS = {
38 * @type Plugin
[all...]
/yui3/build/tabview-plugin/
H A Dtabview-plugin-debug.js12 Y.namespace('Plugin');
13 Y.Plugin.Tabview = TabviewPlugin;
/yui3/src/editor/js/
H A Dcreatelink-base.js3 * Adds prompt style link creation. Adds an override for the <a href="Plugin.ExecCommand.html#method_COMMANDS.createlink">createlink execCommand</a>.
4 * @class Plugin.CreateLinkBase
31 Y.namespace('Plugin');
32 Y.Plugin.CreateLinkBase = CreateLinkBase;
34 Y.mix(Y.Plugin.ExecCommand.COMMANDS, {
36 * Override for the createlink method from the <a href="Plugin.CreateLinkBase.html">CreateLinkBase</a> plugin.
/yui3/src/sortable/js/
H A Dsortable-scroll.js3 * Plugin for sortable to handle scrolling lists.
8 * Plugin for sortable to handle scrolling lists.
12 * @namespace Plugin
22 host.plug(Y.Plugin.DDNodeScroll, {
60 Y.namespace('Y.Plugin');
61 Y.Plugin.SortableScroll = SortScroll;
/yui3/build/createlink-base/
H A Dcreatelink-base-debug.js5 * Adds prompt style link creation. Adds an override for the <a href="Plugin.ExecCommand.html#method_COMMANDS.createlink">createlink execCommand</a>.
6 * @class Plugin.CreateLinkBase
33 Y.namespace('Plugin');
34 Y.Plugin.CreateLinkBase = CreateLinkBase;
36 Y.mix(Y.Plugin.ExecCommand.COMMANDS, {
38 * Override for the createlink method from the <a href="Plugin.CreateLinkBase.html">CreateLinkBase</a> plugin.
/yui3/build/sortable-scroll/
H A Dsortable-scroll-debug.js5 * Plugin for sortable to handle scrolling lists.
10 * Plugin for sortable to handle scrolling lists.
14 * @namespace Plugin
24 host.plug(Y.Plugin.DDNodeScroll, {
62 Y.namespace('Y.Plugin');
63 Y.Plugin.SortableScroll = SortScroll;
/yui3/src/anim/js/
H A Danim-node-plugin.js4 * @class Plugin.NodeFX
20 Y.namespace('Plugin');
21 Y.Plugin.NodeFX = NodeFX;
/yui3/src/dd/js/
H A Ddd-drop-plugin.js12 * @namespace Plugin
36 Y.namespace('Plugin');
37 Y.Plugin.Drop = Drop;
/yui3/src/tabview/js/
H A Dtabview-plugin.js10 Y.namespace('Plugin');
11 Y.Plugin.Tabview = TabviewPlugin;
/yui3/src/datasource/tests/src/
H A Ddatasource-cache.js3 suite = new Y.Test.Suite("Plugin.DataSourceCache Test Suite");
14 this.ds.plug(Y.Plugin.DataSourceCache);
20 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
26 this.ds.plug(Y.Plugin.DataSourceCache);
35 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
54 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
69 this.ds.unplug(Y.Plugin.DataSourceCache);
88 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
/yui3/src/datasource/tests/
H A Ddatasource-cache-tests.js5 suite = new Y.Test.Suite("Plugin.DataSourceCache Test Suite");
16 this.ds.plug(Y.Plugin.DataSourceCache);
22 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
28 this.ds.plug(Y.Plugin.DataSourceCache);
37 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
56 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
71 this.ds.unplug(Y.Plugin.DataSourceCache);
90 this.ds.plug(Y.Plugin.DataSourceCache, { max: 3 });
/yui3/build/node-pluginhost/
H A Dnode-pluginhost-debug.js21 Y.Plugin.Host.plug.apply(Y.Base, args);
36 Y.Plugin.Host.unplug.apply(Y.Base, args);
40 Y.mix(Y.Node, Y.Plugin.Host, false, null, 1);
/yui3/src/console-filters/tests/
H A Dconsole-filters-tests.js30 Y.Assert.isFunction(Y.Plugin.ConsoleFilters);
56 c.plug(Y.Plugin.ConsoleFilters);
67 c.plug(Y.Plugin.ConsoleFilters);
/yui3/src/widget-anim/tests/
H A Dwidget-anim-test.js9 suite = new Y.Test.Suite('Plugin.WidgetAnim');
21 'A widget should be pluggable with Y.Plugin.WidgetAnim': function () {
23 this.widget.plug(Y.Plugin.WidgetAnim);
27 Assert.isInstanceOf(Y.Plugin.WidgetAnim, this.widget.anim, 'Widget does not contain a Y.Plugin.WidgetAnim instance.');
30 'A widget should animate on `visibleChange` when plugged with Y.Plugin.WidgetAnim': function () {
37 plugins: [Y.Plugin.WidgetAnim]

Completed in 1806 milliseconds

1234567