Try replacing the following code in your .js file:
Code:
this.tabs[i].onmouseover=function(){
tabinstance.expandtab(this)
tabinstance.cancelautorun() //stop auto cycling of tabs (if running)
return false
}
with the below instead:
Code:
this.tabs[i].onmouseover=function(){
tabinstance.cancelautorun() //stop auto cycling of tabs (if running)
clearTimeout(tabinstance.delayshow)
var curtab=this
tabinstance.delayshow=setTimeout(function(){
tabinstance.expandtab(curtab)
return false
}, 1000)
}
this.tabs[i].onmouseout=function(){
clearTimeout(tabinstance.delayshow)
}
The 1000 denotes 1 second (or 1000 milliseconds), so you can adjust as desired.
Bookmarks