Adj grids only when slideAccess visible
This commit is contained in:
parent
fab4a4428a
commit
f7eafa9849
19
jquery-ui-timepicker-addon.js
vendored
19
jquery-ui-timepicker-addon.js
vendored
|
@ -643,18 +643,21 @@ $.extend(Timepicker.prototype, {
|
|||
|
||||
// fix any grids since sliders are shorter
|
||||
var sliderAccessWidth = $tp.find('.ui-slider-access:eq(0)').outerWidth(true);
|
||||
$tp.find('table:visible').each(function(){
|
||||
var $g = $(this),
|
||||
oldWidth = $g.outerWidth(),
|
||||
oldMarginLeft = $g.css('marginLeft').toString().replace('%',''),
|
||||
newWidth = oldWidth - sliderAccessWidth,
|
||||
newMarginLeft = ((oldMarginLeft * newWidth)/oldWidth) + '%';
|
||||
if(sliderAccessWidth){
|
||||
$tp.find('table:visible').each(function(){
|
||||
var $g = $(this),
|
||||
oldWidth = $g.outerWidth(),
|
||||
oldMarginLeft = $g.css('marginLeft').toString().replace('%',''),
|
||||
newWidth = oldWidth - sliderAccessWidth,
|
||||
newMarginLeft = ((oldMarginLeft * newWidth)/oldWidth) + '%';
|
||||
|
||||
$g.css({ width: newWidth, marginLeft: newMarginLeft });
|
||||
});
|
||||
$g.css({ width: newWidth, marginLeft: newMarginLeft });
|
||||
});
|
||||
}
|
||||
},0);
|
||||
}
|
||||
// end slideAccess integration
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue