BF: made input autofocus work when opening the room topic input

This commit is contained in:
Emmanuel ROHEE 2014-09-11 11:49:59 +02:00
parent 7e7eb0efc1
commit af44e9556d
2 changed files with 6 additions and 2 deletions

View file

@ -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() {