mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
263 B
JavaScript
Executable File
13 lines
263 B
JavaScript
Executable File
Package.describe({
|
|
summary: "Faster touch events on mobile",
|
|
version: '1.0.13',
|
|
deprecated: true,
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.export('FastClick', 'web');
|
|
|
|
api.addFiles(['pre.js', 'fastclick.js', 'post.js'], 'web');
|
|
});
|