Skip to content
Snippets Groups Projects
Commit e6c62d5d authored by Emmanuel ROHEE's avatar Emmanuel ROHEE
Browse files

We can now upload avatar image somewhere

parent deae7f4f
No related branches found
No related tags found
No related merge requests found
...@@ -16,9 +16,9 @@ limitations under the License. ...@@ -16,9 +16,9 @@ limitations under the License.
'use strict'; 'use strict';
angular.module('RoomsController', ['matrixService', 'mFileInput']) angular.module('RoomsController', ['matrixService', 'mFileInput', 'mFileUpload'])
.controller('RoomsController', ['$scope', '$location', 'matrixService', .controller('RoomsController', ['$scope', '$location', 'matrixService', 'mFileUpload',
function($scope, $location, matrixService) { function($scope, $location, matrixService, mFileUpload) {
$scope.rooms = []; $scope.rooms = [];
$scope.public_rooms = []; $scope.public_rooms = [];
...@@ -167,7 +167,16 @@ angular.module('RoomsController', ['matrixService', 'mFileInput']) ...@@ -167,7 +167,16 @@ angular.module('RoomsController', ['matrixService', 'mFileInput'])
$scope.$watch("newProfileInfo.avatarFile", function(newValue, oldValue) { $scope.$watch("newProfileInfo.avatarFile", function(newValue, oldValue) {
if ($scope.newProfileInfo.avatarFile) { if ($scope.newProfileInfo.avatarFile) {
//@TODO: Upload this HTML5 image file to somewhere console.log("Uploading new avatar file...");
mFileUpload.uploadFile($scope.newProfileInfo.avatarFile).then(
function(url) {
$scope.newProfileInfo.avatar = url;
$scope.setAvatar($scope.newProfileInfo.avatar);
},
function(error) {
$scope.feedback = "Can't upload image";
}
);
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment