diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-27 18:00:08 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-27 18:00:19 +0200 |
commit | 234c50b83480e65d645d4f18912f4b023bdc3954 (patch) | |
tree | 4b143086344e6da0e3d04cfa17b05a3637eee592 /webclient/room/room-controller.js | |
parent | Added RestServlet for /rooms/$roomid/initialSync (diff) | |
download | synapse-234c50b83480e65d645d4f18912f4b023bdc3954.tar.xz |
BF: mFileInput dependency got lost somewhere and upload buttons did not work anymore
Diffstat (limited to 'webclient/room/room-controller.js')
-rw-r--r-- | webclient/room/room-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/room/room-controller.js b/webclient/room/room-controller.js index 641ccddce7..6c98db269e 100644 --- a/webclient/room/room-controller.js +++ b/webclient/room/room-controller.js @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -angular.module('RoomController', ['ngSanitize', 'mUtilities']) +angular.module('RoomController', ['ngSanitize', 'mFileInput', 'mUtilities']) .controller('RoomController', ['$scope', '$http', '$timeout', '$routeParams', '$location', 'matrixService', 'eventStreamService', 'eventHandlerService', 'mFileUpload', 'mUtilities', '$rootScope', function($scope, $http, $timeout, $routeParams, $location, matrixService, eventStreamService, eventHandlerService, mFileUpload, mUtilities, $rootScope) { 'use strict'; |