| OLD | NEW |
| 1 function currentMonth() { | 1 function currentMonth() { |
| 2 return popupWindow.global.picker.currentMonth().toString(); | 2 return popupWindow.global.picker.currentMonth().toString(); |
| 3 } | 3 } |
| 4 | 4 |
| 5 function availableDayCells() { | 5 function availableDayCells() { |
| 6 skipAnimation(); | 6 skipAnimation(); |
| 7 return Array.prototype.map.call(popupWindow.document.querySelectorAll(".day-
cell:not(.disabled):not(.hidden)"), function(element) { | 7 return Array.prototype.map.call(popupWindow.document.querySelectorAll(".day-
cell:not(.disabled):not(.hidden)"), function(element) { |
| 8 return element.$view.day.toString(); | 8 return element.$view.day.toString(); |
| 9 }).sort().join(); | 9 }).sort().join(); |
| 10 } | 10 } |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 lastYearListViewScrollOffset = scrollOffset; | 152 lastYearListViewScrollOffset = scrollOffset; |
| 153 return change; | 153 return change; |
| 154 } | 154 } |
| 155 | 155 |
| 156 function isCalendarTableScrollingWithAnimation() { | 156 function isCalendarTableScrollingWithAnimation() { |
| 157 var animator = popupWindow.global.picker.calendarTableView.scrollView.scroll
Animator(); | 157 var animator = popupWindow.global.picker.calendarTableView.scrollView.scroll
Animator(); |
| 158 if (!animator) | 158 if (!animator) |
| 159 return false; | 159 return false; |
| 160 return animator.isRunning(); | 160 return animator.isRunning(); |
| 161 } | 161 } |
| OLD | NEW |