mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
27 lines
871 B
JavaScript
27 lines
871 B
JavaScript
Package.describe({
|
|
name: 'mobile-experience',
|
|
version: '1.0.0',
|
|
// Brief, one-line summary of the package.
|
|
summary: 'Packages for a great mobile user experience',
|
|
// By default, Meteor will default to using README.md for documentation.
|
|
// To avoid submitting documentation, set this field to null.
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.imply([
|
|
// Fastclick: remove the 300 ms click event lag in mobile browsers
|
|
"fastclick",
|
|
|
|
// A nicer appearance for the status bar in PhoneGap/Cordova apps
|
|
"mobile-status-bar"
|
|
], "web.cordova");
|
|
|
|
api.imply([
|
|
// Show a nice splash image while your PhoneGap/Cordova app's UI is loading.
|
|
// Doesn't do anything without Cordova, but we include it everywhere so you
|
|
// don't need a ton of if statements around your LaunchScreen calls.
|
|
"launch-screen"
|
|
]);
|
|
});
|