diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-18 09:59:47 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-18 10:07:16 +0100 |
commit | f65176564fad5750441e73a158e95a61eccfb669 (patch) | |
tree | 4a70b21fb5c872dafe3b5a11197561deca3e6e36 /webclient/room/room-controller.js | |
parent | Disabled image upload UIs (diff) | |
download | synapse-f65176564fad5750441e73a158e95a61eccfb669.tar.xz |
webclient: Tweak namespace of auto-complete directive. ng- should really only be used for official ng directives.
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 5ea01d7641..b859f3d7e8 100644 --- a/webclient/room/room-controller.js +++ b/webclient/room/room-controller.js @@ -16,7 +16,7 @@ limitations under the License. angular.module('RoomController', ['ngSanitize']) -.directive('ngAutoComplete', ['$timeout', function ($timeout) { +.directive('autoComplete', ['$timeout', function ($timeout) { return function (scope, element, attrs) { element.bind("keydown keypress", function (event) { // console.log("event: " + event.which); |