Adj grids only when slideAccess visible

master
Trent 2011-12-02 13:44:58 -05:00
parent fab4a4428a
commit f7eafa9849
1 changed files with 11 additions and 8 deletions

View File

@ -643,6 +643,7 @@ $.extend(Timepicker.prototype, {
// fix any grids since sliders are shorter
var sliderAccessWidth = $tp.find('.ui-slider-access:eq(0)').outerWidth(true);
if(sliderAccessWidth){
$tp.find('table:visible').each(function(){
var $g = $(this),
oldWidth = $g.outerWidth(),
@ -652,9 +653,11 @@ $.extend(Timepicker.prototype, {
$g.css({ width: newWidth, marginLeft: newMarginLeft });
});
}
},0);
}
// end slideAccess integration
}
},