Change scroll factor to make it more userfriendly

pull/3479/merge
Ralph Jacobs 2017-03-23 16:47:53 +01:00 zatwierdzone przez Janneke Janssen
rodzic e262867c7a
commit 87a7a798c9
3 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -42,6 +42,7 @@ Changelog
* Fix: The save and preview buttons in the page editor are now mobile-friendly (Maarten Kling)
* Fix: Page links within rich text now respect custom URLs defined on specific page models (Gary Krige, Huub Bouma)
* Fix: Default avatar no longer visible when using a transparent gravatar image (Thijs Kramer)
* Fix: Scrolling within the datetime picker is now usable again for touchpads (Ralph Jacobs)
1.9 (16.02.2017)

Wyświetl plik

@ -54,6 +54,7 @@ Bug fixes
* The save and preview buttons in the page editor are now mobile-friendly (Maarten Kling)
* Page links within rich text now respect custom URLs defined on specific page models (Gary Krige, Huub Bouma)
* Default avatar no longer visible when using a transparent gravatar image (Thijs Kramer)
* Scrolling within the datetime picker is now usable again for touchpads (Ralph Jacobs)
Upgrade considerations

Wyświetl plik

@ -440,7 +440,7 @@
timeboxparent.on('mousewheel', function (event) {
var top = Math.abs(parseInt(timebox.css('marginTop'), 10));
top = top - (event.deltaY * 20);
top = top - (event.deltaY * 1);
if (top < 0) {
top = 0;
}