summaryrefslogtreecommitdiff
path: root/www/lib/moment/meteor
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
commitf3136eefe9105deb1d97123629dae80c2de66304 (patch)
tree5389bd34d555ab4c3c065292e17cd41576db33ae /www/lib/moment/meteor
parent5e523cf0d1a3644f6a41709b777b08f73ec71d49 (diff)
updated libraries, squashed the problem of not getting bar handles on click, optimized montage view
Diffstat (limited to 'www/lib/moment/meteor')
-rw-r--r--www/lib/moment/meteor/README.md25
-rw-r--r--www/lib/moment/meteor/export.js3
-rw-r--r--www/lib/moment/meteor/test.js5
3 files changed, 0 insertions, 33 deletions
diff --git a/www/lib/moment/meteor/README.md b/www/lib/moment/meteor/README.md
deleted file mode 100644
index 9bcb50bf..00000000
--- a/www/lib/moment/meteor/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
-Packaging [Moment](momentjs.org) for [Meteor.js](http://meteor.com).
-
-
-# Meteor
-
-If you're new to Meteor, here's what the excitement is all about -
-[watch the first two minutes](https://www.youtube.com/watch?v=fsi0aJ9yr2o); you'll be hooked by 1:28.
-
-That screencast is from 2012. In the meantime, Meteor has become a mature JavaScript-everywhere web
-development framework. Read more at [Why Meteor](http://www.meteorpedia.com/read/Why_Meteor).
-
-
-# Issues
-
-If you encounter an issue while using this package, please CC @dandv when you file it in this repo.
-
-
-# DONE
-
-* Simple test. Should be enough.
-
-
-# TODO
-
-* Add other tests; however, that is overkill, and the responsibiity of Moment, not of the Meteor integration.
diff --git a/www/lib/moment/meteor/export.js b/www/lib/moment/meteor/export.js
deleted file mode 100644
index e8870ceb..00000000
--- a/www/lib/moment/meteor/export.js
+++ /dev/null
@@ -1,3 +0,0 @@
-// moment.js makes `moment` global on the window (or global) object, while Meteor expects a file-scoped global variable
-moment = this.moment;
-delete this.moment;
diff --git a/www/lib/moment/meteor/test.js b/www/lib/moment/meteor/test.js
deleted file mode 100644
index 6bf706a6..00000000
--- a/www/lib/moment/meteor/test.js
+++ /dev/null
@@ -1,5 +0,0 @@
-'use strict';
-
-Tinytest.add('Moment.is', function (test) {
- test.ok(moment.isMoment(moment()), {message: 'simple moment object'});
-});