Migrated from sbadmin to AdminLTE CSS framework

This commit is contained in:
johnny@pittpc.com
2019-11-19 18:29:02 -05:00
parent bf9b659283
commit e5036253ed
2393 changed files with 218489 additions and 148153 deletions

View File

@@ -0,0 +1,17 @@
Package.describe({
name: 'dangrossman:bootstrap-daterangepicker',
version: '3.0.5',
summary: 'Date range picker component',
git: 'https://github.com/dangrossman/daterangepicker',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('METEOR@0.9.0.1');
api.use('momentjs:moment@2.22.1', ["client"]);
api.use('jquery@3.3.1', ["client"]);
api.addFiles('daterangepicker.js', ["client"]);
api.addFiles('daterangepicker.css', ["client"]);
});