This addon brings drag-drop-polyfill into your Ember applications to polyfill drag and drop events for mobile browsers.
ember install ember-drag-drop-polyfill
Configure what files are included in your build by modifying ember-cli-build.js
.
Example:
// ember-cli-build.js
var app = new EmberApp(defaults, {
// Add options here
["ember-drag-drop-polyfill"]: {
includeCSS: true,
includeIconsCss: false,
includeDebugCss: true,
includeScrollBehavior: false,
}
});
Pass configuration options through to drag-drop-polyfill by modifying config/environment.js
.
Example:
// config/environment.js
var ENV = {
// ...
"ember-drag-drop-polyfill": {
enableEnterLeave: true,
holdToDrag: false
},
// ...
};