| Current Path : /home/azimutno/www/demo/libraries/nextend/assets/smartslider/admin/js/ |
| Current File : /home/azimutno/www/demo/libraries/nextend/assets/smartslider/admin/js/adminresizer.js |
njQuery(document).ready(function($) {
var firstcol = $(".smartslider-firstcol");
var firstcolborder = $(".smartslider-firstcol > .smartslider-border");
var secondcol = $(".smartslider-secondcol");
var colresize = function(){
firstcol.height("auto");
firstcolborder.height("auto");
var fcolh = firstcol.height();
var scolh = secondcol.height();
if(scolh > fcolh){
firstcol.height(scolh);
fcolh = firstcol.height();
}
firstcolborder.height(fcolh);
};
colresize();
$(window).resize(colresize);
window.nextendsmartslidercolresize = colresize;
});