Room topic: if the request fails, show the error in the feedback

pull/4/merge
Emmanuel ROHEE 10 years ago
parent af44e9556d
commit 14a9652324
  1. 9
      webclient/room/room-controller.js

@ -67,7 +67,14 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
},
updateTopic: function() {
console.log("Updating topic to "+$scope.topic.newTopicText);
matrixService.setTopic($scope.room_id, $scope.topic.newTopicText);
matrixService.setTopic($scope.room_id, $scope.topic.newTopicText).then(
function() {
},
function(error) {
$scope.feedback = "Request failed: " + error.data.error;
}
);
$scope.topic.isEditing = false;
},
cancelEdit: function() {

Loading…
Cancel
Save