Browse Source

Fix to #154 - Group and profile pic not uploading on Firefox

master
Haktrum 11 years ago
parent
commit
7668d92616
  1. 4
      app/js/controllers.js

4
app/js/controllers.js

@ -949,7 +949,7 @@ angular.module('myApp.controllers', [])
$scope.$watch('photo.file', onPhotoSelected); $scope.$watch('photo.file', onPhotoSelected);
function onPhotoSelected (photo) { function onPhotoSelected (photo) {
if (!photo || !photo.hasOwnProperty('name')) { if (!photo || !photo.type || photo.type.indexOf('image') !== 0) {
return; return;
} }
$scope.photo.updating = true; $scope.photo.updating = true;
@ -1014,7 +1014,7 @@ angular.module('myApp.controllers', [])
$scope.$watch('photo.file', onPhotoSelected); $scope.$watch('photo.file', onPhotoSelected);
function onPhotoSelected (photo) { function onPhotoSelected (photo) {
if (!photo || !photo.hasOwnProperty('name')) { if (!photo || !photo.type || photo.type.indexOf('image') !== 0) {
return; return;
} }
$scope.photo.updating = true; $scope.photo.updating = true;

Loading…
Cancel
Save