Files
meteor/packages/mobile-experience/package.js
2015-08-06 17:36:50 -07:00

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"
]);
});