Files
meteor/packages/deprecated/fastclick/post.js
Hugh Willson a365ad7910 Deprecate fastclick
Since `fastclick` is no longer maintained, is introducing bugs,
and is no longer really necessary with modern mobile browsers,
it is being deprecated.
2017-08-24 07:19:29 -04:00

9 lines
268 B
JavaScript

// This exports object was created in pre.js. Now copy the 'FastClick' object
// from it into the package-scope variable `FastClick`, which will get exported.
FastClick = module.exports.FastClick;
Meteor.startup(function () {
FastClick.attach(document.body);
});