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.
11 lines
776 B
11 lines
776 B
/*
|
|
* Tabs 3 extensions
|
|
*
|
|
* Copyright (c) 2007 Klaus Hartl (stilbuero.de)
|
|
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
|
* and GPL (GPL-LICENSE.txt) licenses.
|
|
*
|
|
* http://docs.jquery.com/UI/TabsExtensions
|
|
*/
|
|
(function($){$.extend($.ui.tabs.prototype,{rotation:null,rotate:function(ms,continuing){continuing=continuing||false;var self=this,t=this.options.selected;function start(){self.rotation=setInterval(function(){t=++t<self.$tabs.length?t:0;self.select(t);},ms);}function stop(e){if(!e||e.clientX){clearInterval(self.rotation);}}if(ms){start();if(!continuing)this.$tabs.bind(this.options.event,stop);else
|
|
this.$tabs.bind(this.options.event,function(){stop();t=self.options.selected;start();});}else{stop();this.$tabs.unbind(this.options.event,stop);}}});})(jQuery); |