]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/include/javascript/yui3/build/scrollview/scrollview.js
Release 6.5.0
[Github/sugarcrm.git] / jssource / src_files / include / javascript / yui3 / build / scrollview / scrollview.js
1 /*
2 Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.com/yui/license.html
5 version: 3.3.0
6 build: 3167
7 */
8 YUI.add('scrollview', function(Y) {
9
10 /**
11  * <p>
12  * The scrollview module does not add any new classes. It simply plugs the ScrollViewScrollbars plugin into the 
13  * base ScrollView class implementation provided by the scrollview-base module, so that all scrollview instances 
14  * have scrollbars enabled.
15  * </p>
16  *
17  * <ul>
18  *     <li><a href="ScrollView.html">ScrollView API documentation</a></li>
19  *     <li><a href="module_scrollview-base.html">scrollview-base Module documentation</a></li>
20  * </ul>
21  *
22  * @module scrollview
23  */
24
25 Y.Base.plug(Y.ScrollView, Y.Plugin.ScrollViewScrollbars);
26
27
28 }, '3.3.0' ,{requires:['scrollview-base', 'scrollview-scrollbars']});