Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scrollview-debug.js 835B

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