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/index.html | |
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/index.html')
-rw-r--r-- | webclient/index.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webclient/index.html b/webclient/index.html index 31b62efaa8..387505372a 100644 --- a/webclient/index.html +++ b/webclient/index.html @@ -5,9 +5,11 @@ <link rel="stylesheet" href="app.css"> <link rel="icon" href="favicon.ico"> - + + <script type='text/javascript' src='js/jquery-1.8.3.min.js'></script> <script src="js/angular.js"></script> <script src="js/angular-route.js"></script> + <script type='text/javascript' src='js/ng-infinite-scroll-matrix.js'></script> <script src="app.js"></script> <script src="app-controller.js"></script> <script src="login/login-controller.js"></script> |