Files
meteor/packages/mobile-experience/package.js
Hugh Willson a365ad7910 Deprecate fastclick
Since `fastclick` is no longer maintained, is introducing bugs,
and is no longer really necessary with modern mobile browsers,
it is being deprecated.
2017-08-24 07:19:29 -04:00

21 lines
598 B
JavaScript

Package.describe({
name: 'mobile-experience',
version: '1.0.5',
summary: 'Packages for a great mobile user experience',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.imply([
// 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"
]);
});