Fixed up client files can now download and delete files, added web link to client logins added payments, quotes and recurring to client print and lots of little ui cleanups here and there

This commit is contained in:
root
2019-05-11 20:06:01 -04:00
parent f5377409b0
commit 5c55358841
750 changed files with 225007 additions and 177 deletions
+5
View File
@@ -0,0 +1,5 @@
Packaging [Moment](momentjs.org) for [Meteor.js](http://meteor.com).
# Issues
If you encounter an issue while using this package, please CC @dandv when you file it in this repo.
+6
View File
@@ -0,0 +1,6 @@
// moment.js makes `moment` global on the window (or global) object, while Meteor expects a file-scoped global variable
moment = this.moment;
try {
delete this.moment;
} catch (e) {
}
+1
View File
@@ -0,0 +1 @@
../moment.js
+27
View File
@@ -0,0 +1,27 @@
// package metadata file for Meteor.js
'use strict';
var packageName = 'momentjs:moment'; // https://atmospherejs.com/momentjs/moment
Package.describe({
name: packageName,
summary: 'Moment.js (official): parse, validate, manipulate, and display dates - official Meteor packaging',
version: '2.24.0',
git: 'https://github.com/moment/moment.git'
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@0.9.0', 'METEOR@1.0', 'METEOR@1.2']);
api.export('moment');
api.addFiles([
'moment.js',
'export.js'
]);
});
Package.onTest(function (api) {
api.use(packageName);
api.use('tinytest');
api.addFiles('test.js');
});
+5
View File
@@ -0,0 +1,5 @@
'use strict';
Tinytest.add('Moment.is', function (test) {
test.ok(moment.isMoment(moment()), {message: 'simple moment object'});
});