BF: edit the actual room name not the displayed room name (which has been computed)

This commit is contained in:
Emmanuel ROHEE 2014-09-17 15:46:12 +02:00
parent 9aed6a06cf
commit fe7af80198
2 changed files with 9 additions and 4 deletions

View file

@ -53,8 +53,13 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
return;
};
// Use the filter applied in html to set the input value
$scope.name.newNameText = $filter('mRoomName')($scope.room_id);
var nameEvent = $rootScope.events.rooms[$scope.room_id]['m.room.name'];
if (nameEvent) {
$scope.name.newNameText = nameEvent.content.name;
}
else {
$scope.name.newNameText = "";
}
// Force focus to the input
$timeout(function() {