Slow resize

Hello, this is just get.. I did have to add the corner by corner rounds that was listed below in the forum... but with out without it there is a small issue, even in the demo.. atm I hate to say it it's not a Liquid Canvas it's more like Molasses.

What can be done to fix this.. ??

now.. doing this..
FROM

jQuery.extend({
registerLiquidCanvasPlugin: function(plugin) {
plugins[plugin.name] = $.extend({}, Plugin, plugin);
}
});

$(document).ready(checkAllResize);
poll();

})(jQuery);

To


jQuery.extend({
registerLiquidCanvasPlugin: function(plugin) {
plugins[plugin.name] = $.extend({}, Plugin, plugin);
}
});

$(document).ready(checkAllResize);
$(window).resize(checkAllResize).load(function(){checkAllResize();})
window.setTimeout(function() {checkAllResize();}, 15);
poll();

})(jQuery);

Does seem to help alot here... but there may be better ways to aproch the resize in whole IMHO...

This is a great script.. Cheers -Jeremy

Trackback URL for this post:

http://www.ruzee.com/trackback/289

More on the box resize

so I need to force the resize to occur faster when doing dynamic content.. so this is what I did...

.......in Liquid Canvas jQuery Plugin like above

//added this so I can call it $.fn.resizeBoxes(); as needed
$.fn.resizeBoxes= function() {
checkAllResize();
poll();
};

$(document).ready(checkAllResize);
$(window).resize(checkAllResize).load(function(){checkAllResize();})
window.setTimeout(function() {checkAllResize();}, 15);
poll();
})(jQuery);

May-be more work can be done?