kopia lustrzana https://github.com/wagtail/wagtail
Change scroll factor to make it more userfriendly
rodzic
e262867c7a
commit
87a7a798c9
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue