mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
9 lines
268 B
JavaScript
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);
|
|
});
|