This script is full of, I don't know what to call them, I guess 'issues' would be about as good as any.
To fix this particular issue, find:
Code:
hidebox:function($, $tooltip){
if (!this.isdocked){
$tooltip.stop(false, true).hide()
$tooltip.css({borderColor:'black'}).find('.stickystatus:eq(0)').css({background:this.stickybordercolors[0]}).html(this.stickynotice1)
}
},
docktooltip:function($, $tooltip, e){
this.isdocked=true
$tooltip.css({borderColor:'darkred'}).find('.stickystatus:eq(0)').css({background:this.stickybordercolors[1]}).html(this.stickynotice2)
},
and change the highlighted as shown:
Code:
hidebox:function($, $tooltip){
if (!this.isdocked){
$tooltip.stop(false, true).hide()
$tooltip.css({borderColor:this.stickybordercolors[0]}).find('.stickystatus:eq(0)').css({background:this.stickybordercolors[0]}).html(this.stickynotice1)
}
},
docktooltip:function($, $tooltip, e){
this.isdocked=true;
if(this.stickykillclicks){
$('body').bind('click', this.killclicks);
}
$tooltip.css({borderColor:this.stickybordercolors[1]}).find('.stickystatus:eq(0)').css({background:this.stickybordercolors[1]}).html(this.stickynotice2)
},
I have a blog entry on this script where I have other modifications to deal with the various other issues that have so far been identified. I updated it to include this fix. It's located at:
http://www.dynamicdrive.com/forums/blog.php?b=48
I strongly recommend that you use its script instead. That way you need not modify your current version.
Bookmarks