Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
This will split the stickies from the current thread body and place them in a separate table above.

Global footers.

<script type="text/Javascript">
// Sticky Splitter v1 by Chris
// Do not redistribute without permission of the creator
(function(){

var sticky_images = [
// Edit the links below to the paths to your sticky images
"http://www.hyperboards.com/v2images/topic_status_icons__stickied.gif",
"http://www.hyperboards.com/v2images/topic_status_icons__stickied_locked.gif",
"http://www.hyperboards.com/v2images/poll_status_icons__stickied.gif",
"http://www.hyperboards.com/v2images/poll_status_icons__stickied_locked.gif"
];

// No need to edit below here
var is_img = function(ur){
for(var a=0;a<sticky_images.length;a++){
if(sticky_images[a] == ur) return true;
}
return false;
}

var aTD = document.getElementsByTagName("td");
if(location.href.match(/action\/view_board/) && !document.multi_manage){
var set = $('td.window1.center[width="3%"]:first-child').filter(function(){
return is_img($("img", this)[0].src);
});
if(set.length > 0){
set = set.parent()
var tabO = set[0].parentNode.parentNode;
var tab = tabO.cloneNode(true);
tab.style.marginBottom = "15px";
$("tr", tab).filter(function(){
return this.rowIndex > 2 && this.rowIndex != this.parentNode.rows.length-1;
}).remove();
$(set).insertBefore($("tr:last-child", tab));
$(tab).insertBefore(tabO);
}
}

})();
</script>


newBookmarkLockedFalling