mobile-drag-drop
Advanced tools
Changelog
3.0.0-rc.0 (2022-11-04)
Adds shadow dom support.
Thanks to @jogibear9988 and @johanquiroga :+1:
Changelog
2.3.0-rc.1 (2018-03-17)
Maintenance release candidate for improving holdToDrag
functionality
holdToDrag
functionalityscroll
listener for aborting scheduled drag operation in capture phaseChangelog
2.3.0-rc.0 (2018-01-22)
Maintenance release candidate containing bugfixes and API improvements.
The enhanced config API is intended to enable custom workarounds when the polyfill falls short.
Changelog
2.2.0 (2017-09-05)
holdToDrag
option introduced in 1.x is now available in 2.x
Thanks to @altschuler and @matte00 :+1:
Changelog
2.1.0 (2017-07-27)
This release adds a minor change to the API surface.
export function polyfill(override?: Config):boolean;
polyfill()
will inform if the polyfill takes effect by returning true
.
Changelog
2.0.0 (2017-07-23)
Releasing the rewrite as stable 2.0.0 including a few breaking changes because of renaming.
The github repository and released package is renamed from drag-drop-polyfill
to mobile-drag-drop
.
This changes how the package is installed and further how it is referenced.
BEFORE
import {polyfill} from "drag-drop-polyfill/drag-drop-polyfill";
import {scrollBehaviourDragImageTranslateOverride} from "drag-drop-polyfill/drag-drop-polyfill-scroll-behaviour";
AFTER
import {polyfill} from "mobile-drag-drop";
import {scrollBehaviourDragImageTranslateOverride} from "drag-drop-polyfill/scroll-behaviour";
Also the css files got shorter names which do not repeat the package name in their filename.
BEFORE
drag-drop-polyfill.css
drag-drop-polyfill-icons.css
AFTER
default.css
icons.css