Files
meteor/packages/fastclick/post.js
2014-08-16 16:08:30 -07: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);
});