diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-15 17:42:02 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-15 17:42:11 +0100 |
commit | 5b817ecd44ac5672da2042bb72ba8cf6e8d911f1 (patch) | |
tree | 6b2891b92de5f94f0959907d03b44f0dd3eff7c1 /webclient/app.js | |
parent | When new invites come down, update the My Rooms list. Added hacks to make the... (diff) | |
download | synapse-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.js | 3 |
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', |