@tiddlygit/tiddlywiki
Version:
a non-linear personal web notebook
26 lines (19 loc) • 485 B
JavaScript
/*\
title: $:/plugins/tiddlywiki/mobiledragdrop/startup.js
type: application/javascript
module-type: startup
Startup initialisation
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
;
// Export name and synchronous status
exports.name = "mobiledragdrop";
exports.platforms = ["browser"];
exports.after = ["startup"];
exports.synchronous = true;
exports.startup = function() {
window.addEventListener("touchmove", function() {});
};
})();