diff --git a/.meteor/packages b/.meteor/packages index 78fc7d63..ace0a120 100644 --- a/.meteor/packages +++ b/.meteor/packages @@ -26,3 +26,5 @@ ian:accounts-ui-bootstrap-3 check audit-argument-checks session +tmeasday:errors@2.0.0 + diff --git a/.meteor/versions b/.meteor/versions index 1257150b..81c690f8 100644 --- a/.meteor/versions +++ b/.meteor/versions @@ -60,6 +60,7 @@ modules@0.6.1 modules-runtime@0.6.3 mongo@1.1.7 mongo-id@1.0.4 +mongo-livedata@1.0.12 npm-bcrypt@0.8.5 npm-mongo@1.4.43 observe-sequence@1.0.11 @@ -84,6 +85,7 @@ standard-minifier-js@1.0.6 stylus@2.511.5 templating@1.1.9 templating-tools@1.0.4 +tmeasday:errors@2.0.0 tracker@1.0.13 twbs:bootstrap@3.3.6 ui@1.0.11 diff --git a/client/helpers/errors.js b/client/helpers/errors.js deleted file mode 100644 index 1991c316..00000000 --- a/client/helpers/errors.js +++ /dev/null @@ -1,6 +0,0 @@ -// Local (client-only) collection -Errors = new Mongo.Collection(null); - -throwError = function(message) { - Errors.insert({message: message}) -} \ No newline at end of file diff --git a/client/templates/application/layout.html b/client/templates/application/layout.html index 43559dec..cfbcad87 100644 --- a/client/templates/application/layout.html +++ b/client/templates/application/layout.html @@ -1,7 +1,7 @@