2 YUI 3.13.0 (build 508226d)
3 Copyright 2013 Yahoo! Inc. All rights reserved.
4 Licensed under the BSD License.
5 http://yuilibrary.com/license/
8 YUI.add('base-pluginhost', function (Y, NAME) {
11 * The base-pluginhost submodule adds Plugin support to Base, by augmenting Base with
12 * Plugin.Host and setting up static (class level) Base.plug and Base.unplug methods.
15 * @submodule base-pluginhost
20 PluginHost = Y.Plugin.Host;
22 Y.mix(Base, PluginHost, false, null, 1);
25 * Alias for <a href="Plugin.Host.html#method_Plugin.Host.plug">Plugin.Host.plug</a>. See aliased
26 * method for argument and return value details.
31 Base.plug = PluginHost.plug;
34 * Alias for <a href="Plugin.Host.html#method_Plugin.Host.unplug">Plugin.Host.unplug</a>. See the
35 * aliased method for argument and return value details.
40 Base.unplug = PluginHost.unplug;
43 }, '3.13.0', {"requires": ["base-base", "pluginhost"]});