improved user modal

This commit is contained in:
Igor Zhukov 2014-03-04 13:08:15 +01:00
parent 8d4ce0d3c5
commit 6f92f4f895
2 changed files with 2 additions and 9 deletions

View File

@ -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');

View File

@ -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'
});
}