blob: 675834e34a87997c0130170c773df6bf96238492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/*
* 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($) {
/*
* Rotate
*/
$.extend($.ui.tabs.prototype, {
rotation: null,
rotate: function(ms) {
var self = this;
function stop(e) {
if (e.clientX) { // only in case of a true click
clearInterval(self.rotation);
}
}
// start interval
if (ms) {
var t = this.options.selected;
this.rotation = setInterval(function() {
t = ++t < self.$tabs.length ? t : 0;
self.click(t);
}, ms);
this.$tabs.bind(this.options.event, stop);
}
// stop interval
else {
clearInterval(this.rotation);
this.$tabs.unbind(this.options.event, stop);
}
}
});
})(jQuery);
|