~ubuntu-branches/ubuntu/utopic/moodle/utopic

« back to all changes in this revision

Viewing changes to lib/yuilib/3.9.1/build/base-pluginhost/base-pluginhost-debug.js

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2014-05-12 16:10:38 UTC
  • mfrom: (36.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20140512161038-puyqf65k4e0s8ytz
Tags: 2.6.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
2
 
YUI.add('base-pluginhost', function (Y, NAME) {
3
 
 
4
 
    /**
5
 
     * The base-pluginhost submodule adds Plugin support to Base, by augmenting Base with
6
 
     * Plugin.Host and setting up static (class level) Base.plug and Base.unplug methods.
7
 
     *
8
 
     * @module base
9
 
     * @submodule base-pluginhost
10
 
     * @for Base
11
 
     */
12
 
 
13
 
    var Base = Y.Base,
14
 
        PluginHost = Y.Plugin.Host;
15
 
 
16
 
    Y.mix(Base, PluginHost, false, null, 1);
17
 
 
18
 
    /**
19
 
     * Alias for <a href="Plugin.Host.html#method_Plugin.Host.plug">Plugin.Host.plug</a>. See aliased
20
 
     * method for argument and return value details.
21
 
     *
22
 
     * @method plug
23
 
     * @static
24
 
     */
25
 
    Base.plug = PluginHost.plug;
26
 
 
27
 
    /**
28
 
     * Alias for <a href="Plugin.Host.html#method_Plugin.Host.unplug">Plugin.Host.unplug</a>. See the
29
 
     * aliased method for argument and return value details.
30
 
     *
31
 
     * @method unplug
32
 
     * @static
33
 
     */
34
 
    Base.unplug = PluginHost.unplug;
35
 
 
36
 
 
37
 
}, '3.9.1', {"requires": ["base-base", "pluginhost"]});