diff --git a/app/js/directives.js b/app/js/directives.js index 2d963cdd..2d2bb171 100644 --- a/app/js/directives.js +++ b/app/js/directives.js @@ -513,6 +513,7 @@ angular.module('myApp.directives', ['myApp.filters']) } scope.$watchCollection('thumb.location', function (newLocation) { + // console.log('new loc', newLocation, arguments); var counterSaved = ++counter; if (!newLocation || newLocation.empty) { element.attr('src', scope.thumb && scope.thumb.placeholder || 'img/blank.gif'); diff --git a/app/js/services.js b/app/js/services.js index 20d14af0..b17ab611 100644 --- a/app/js/services.js +++ b/app/js/services.js @@ -277,15 +277,7 @@ angular.module('myApp.services', []) templateUrl: 'partials/user_modal.html?2', controller: 'UserModalController', scope: scope, - windowClass: 'user_modal_window', - resolve: { - userFull: MtpApiManager.invokeApi('users.getFullUser', { - id: getUserInput(userID) - }).then(function (result) { - saveApiUser(result.user); - return result; - }) - } + windowClass: 'user_modal_window' }); }