mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
Package.describe({
|
|
summary: "Faster touch events on mobile",
|
|
version: '1.0.1'
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.export('FastClick', 'web');
|
|
|
|
api.addFiles(['pre.js', 'fastclick.js', 'post.js'], 'web');
|
|
});
|