Use spinner icon while performing AJAX submissions of favorite/unfavorite button so there's some visual feedback that something's happening.

This commit is contained in:
brion
2009-08-16 10:17:03 -07:00
committed by Craig Andrews
parent 136a69a387
commit 84227dd4e1
2 changed files with 12 additions and 0 deletions

View File

@@ -82,6 +82,10 @@ $(document).ready(function(){
// XXX: refactor this code
var favoptions = { dataType: 'xml',
beforeSubmit: function(data, target, options) {
$(target).addClass('processing');
return true;
},
success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
var dis = new_form.id;
var fav = dis.replace('disfavor', 'favor');
@@ -91,6 +95,10 @@ $(document).ready(function(){
};
var disoptions = { dataType: 'xml',
beforeSubmit: function(data, target, options) {
$(target).addClass('processing');
return true;
},
success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
var fav = new_form.id;
var dis = fav.replace('favor', 'disfavor');