1 files changed, 5 insertions, 0 deletions
diff --git a/webclient/room/room-controller.js b/webclient/room/room-controller.js
index 0000fcfc61..94c7688907 100644
--- a/webclient/room/room-controller.js
+++ b/webclient/room/room-controller.js
@@ -58,6 +58,11 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
$scope.topic.newTopicText = "";
}
+ // Force focus to the input
+ $timeout(function() {
+ angular.element('.roomTopicInput').focus();
+ }, 0);
+
$scope.topic.isEditing = true;
},
updateTopic: function() {
|