|
602
|
1 |
YUI.add('scrollview', function (Y, NAME) { |
|
|
2 |
|
|
|
3 |
/** |
|
|
4 |
* <p> |
|
|
5 |
* The scrollview module does not add any new classes. It simply plugs the ScrollViewScrollbars plugin into the |
|
|
6 |
* base ScrollView class implementation provided by the scrollview-base module, so that all scrollview instances |
|
|
7 |
* have scrollbars enabled. |
|
|
8 |
* </p> |
|
|
9 |
* |
|
|
10 |
* <ul> |
|
|
11 |
* <li><a href="../classes/ScrollView.html">ScrollView API documentation</a></li> |
|
|
12 |
* <li><a href="scrollview-base.html">scrollview-base Module documentation</a></li> |
|
|
13 |
* </ul> |
|
|
14 |
* |
|
|
15 |
* @module scrollview |
|
|
16 |
*/ |
|
|
17 |
|
|
|
18 |
Y.Base.plug(Y.ScrollView, Y.Plugin.ScrollViewScrollbars); |
|
|
19 |
|
|
|
20 |
|
|
|
21 |
}, '@VERSION@', {"requires": ["scrollview-base", "scrollview-scrollbars"]}); |