diff --git a/ember/app/initializers/human-time-updater.js b/ember/app/initializers/human-time-updater.js index 1b60c108c..847bff816 100644 --- a/ember/app/initializers/human-time-updater.js +++ b/ember/app/initializers/human-time-updater.js @@ -9,6 +9,7 @@ export default { initialize: function(container) { // Livestamp.js / v1.1.2 / (c) 2012 Matt Bradley / MIT License + // @todo rewrite this to be simpler and cleaner (function($, moment) { var updateInterval = 1e3, paused = false, diff --git a/ember/app/models/post-stream.js b/ember/app/models/post-stream.js index 486a25879..1eb1c4e32 100644 --- a/ember/app/models/post-stream.js +++ b/ember/app/models/post-stream.js @@ -186,5 +186,4 @@ export default Ember.ArrayProxy.extend(Ember.Evented, { findNearestToIndex: function(index) { return this.findNearestTo(index, 'indexEnd'); } - });