/usr/share/javascript/yui3/base-pluginhost/base-pluginhost.js is in libjs-yui3-full 3.5.1-1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /*
YUI 3.5.1 (build 22)
Copyright 2012 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
YUI.add('base-pluginhost', function(Y) {
/**
* The base-pluginhost submodule adds Plugin support to Base, by augmenting Base with
* Plugin.Host and setting up static (class level) Base.plug and Base.unplug methods.
*
* @module base
* @submodule base-pluginhost
* @for Base
*/
var Base = Y.Base,
PluginHost = Y.Plugin.Host;
Y.mix(Base, PluginHost, false, null, 1);
/**
* Alias for <a href="Plugin.Host.html#method_Plugin.Host.plug">Plugin.Host.plug</a>. See aliased
* method for argument and return value details.
*
* @method plug
* @static
*/
Base.plug = PluginHost.plug;
/**
* Alias for <a href="Plugin.Host.html#method_Plugin.Host.unplug">Plugin.Host.unplug</a>. See the
* aliased method for argument and return value details.
*
* @method unplug
* @static
*/
Base.unplug = PluginHost.unplug;
}, '3.5.1' ,{requires:['base-base', 'pluginhost']});
|