diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-10-27 16:28:33 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-10-27 16:30:07 +0000 |
commit | da87990bd6e23380cdd5b46809fb80fb619f988c (patch) | |
tree | ace633136a65156b8f24e3554fbaa1ef068fbeeb /webclient/app.js | |
parent | HandleRoomMember: handle correctly prev_content (diff) | |
download | synapse-da87990bd6e23380cdd5b46809fb80fb619f988c.tar.xz |
Implement SYWEB-121 : Display JSON when clicking messages.
JSON is displayed as a modal dialog via AngularJS' bootstrap module, "ui.bootstrap".
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 31118304c6..099e2170a0 100644 --- a/webclient/app.js +++ b/webclient/app.js @@ -30,7 +30,8 @@ var matrixWebClient = angular.module('matrixWebClient', [ 'MatrixCall', 'eventStreamService', 'eventHandlerService', - 'infinite-scroll' + 'infinite-scroll', + 'ui.bootstrap' ]); matrixWebClient.config(['$routeProvider', '$provide', '$httpProvider', |