mobiledragdrop: attempt to fix scrolling issues on ios

See https://github.com/timruffles/ios-html5-drag-drop-shim/issues/77
This commit is contained in:
Jermolene 2017-03-23 21:16:01 +00:00
parent 0efed8335d
commit 0493208a23
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
/*\
title: $:/plugins/tiddlywiki/mobiledragdrop/startup.js
type: application/javascript
module-type: startup
Startup initialisation
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
// Export name and synchronous status
exports.name = "mobiledragdrop";
exports.platforms = ["browser"];
exports.after = ["startup"];
exports.synchronous = true;
exports.startup = function() {
window.addEventListener("touchmove", function() {});
};
})();