mirror of
https://github.com/xdan/datetimepicker.git
synced 2024-11-18 06:24:22 +00:00
Merge pull request #738 from okremer84/fix_up_down_arrow
Fix up/down arrow
This commit is contained in:
commit
87319b4baf
@ -1628,7 +1628,18 @@ var datetimepickerFactory = function ($) {
|
|||||||
var pheight = timeboxparent[0].clientHeight,
|
var pheight = timeboxparent[0].clientHeight,
|
||||||
height = timebox[0].offsetHeight,
|
height = timebox[0].offsetHeight,
|
||||||
top = Math.abs(parseInt(timebox.css('marginTop'), 10));
|
top = Math.abs(parseInt(timebox.css('marginTop'), 10));
|
||||||
if ($this.hasClass(options.next) && (height - pheight) - options.timeHeightInTimePicker >= top) {
|
/**
|
||||||
|
* Fixes a bug which happens if:
|
||||||
|
* top is < the timeHeightInTimePicker, it will cause the up arrow to stop working
|
||||||
|
* same for the down arrow if it's not exactly on the pixel
|
||||||
|
*/
|
||||||
|
if (top < options.timeHeightInTimePicker) {
|
||||||
|
top = options.timeHeightInTimePicker;
|
||||||
|
} else if ($this.hasClass(options.next) && (height - pheight) < top) {
|
||||||
|
timebox.css('marginTop', '-' + height + 'px');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this.hasClass(options.next) && (height - pheight) > top) {
|
||||||
timebox.css('marginTop', '-' + (top + options.timeHeightInTimePicker) + 'px');
|
timebox.css('marginTop', '-' + (top + options.timeHeightInTimePicker) + 'px');
|
||||||
} else if ($this.hasClass(options.prev) && top - options.timeHeightInTimePicker >= 0) {
|
} else if ($this.hasClass(options.prev) && top - options.timeHeightInTimePicker >= 0) {
|
||||||
timebox.css('marginTop', '-' + (top - options.timeHeightInTimePicker) + 'px');
|
timebox.css('marginTop', '-' + (top - options.timeHeightInTimePicker) + 'px');
|
||||||
|
Loading…
Reference in New Issue
Block a user