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.

tabview-plugin-debug.js 515B

1234567891011121314151617181920212223
  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('tabview-plugin', function(Y) {
  9. function TabviewPlugin() {
  10. TabviewPlugin.superclass.constructor.apply(this, arguments);
  11. };
  12. TabviewPlugin.NAME = 'tabviewPlugin';
  13. TabviewPlugin.NS = 'tabs';
  14. Y.extend(TabviewPlugin, Y.TabviewBase);
  15. Y.namespace('Plugin');
  16. Y.Plugin.Tabview = TabviewPlugin;
  17. }, '3.4.0' ,{requires:['tabview-base']});