summary refs log tree commit diff
path: root/webclient/app.js
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-08-15 17:42:02 +0100
committerKegan Dougal <kegan@matrix.org>2014-08-15 17:42:11 +0100
commit5b817ecd44ac5672da2042bb72ba8cf6e8d911f1 (patch)
tree6b2891b92de5f94f0959907d03b44f0dd3eff7c1 /webclient/app.js
parentWhen new invites come down, update the My Rooms list. Added hacks to make the... (diff)
downloadsynapse-5b817ecd44ac5672da2042bb72ba8cf6e8d911f1.tar.xz
Added infinite scrolling. It's sliiiightly buggy in that it jumps down the list a bit, but it is overall working pretty well. Added ng-infinite-scroll-matrix.js and jquery-1.8.3 as deps.
Diffstat (limited to 'webclient/app.js')
-rw-r--r--webclient/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webclient/app.js b/webclient/app.js
index 6e0351067f..58d3942c65 100644
--- a/webclient/app.js
+++ b/webclient/app.js
@@ -22,7 +22,8 @@ var matrixWebClient = angular.module('matrixWebClient', [
     'RoomsController',
     'matrixService',
     'eventStreamService',
-    'eventHandlerService'
+    'eventHandlerService',
+    'infinite-scroll'
 ]);
 
 matrixWebClient.config(['$routeProvider', '$provide', '$httpProvider',