CC-4744: Edit user form needs styling

-done
This commit is contained in:
denise 2012-12-17 14:12:27 -05:00
parent a2d0f98a62
commit bd18039785
6 changed files with 152 additions and 15 deletions

View file

@ -467,7 +467,6 @@ $(document).ready(function() {
$('#current-user').bind('mouseover', function() {
$.ajax({
url: baseUrl+'/user/edit-user/format/json',
dataType: 'json',
success: function(json) {
$('#current-user').tipsy({
gravity: 'n',
@ -497,9 +496,9 @@ $(document).ready(function() {
var data = $('#current-user-form').serialize();
$.post(baseUrl+'/user/edit-user', {format: 'json', data: data}, function(data) {
var json = $.parseJSON(data);
$('#current-user-container').empty().append(json.html);
$('.tipsy-inner').empty().append(json.html);
setCurrentUserPseudoPassword();
setTimeout(removeSuccessMsg, 5000);
});
})
});
});