make favorites form use Ajax

darcs-hash:20080908211610-84dde-8a7819ee8733cf73a778c2448c93974e2adecca7.gz
This commit is contained in:
Evan Prodromou
2008-09-08 17:16:10 -04:00
parent 5d3cd4feff
commit 04f87895ba
3 changed files with 612 additions and 0 deletions

View File

@@ -52,6 +52,14 @@ $(document).ready(function(){
// set the focus
$("#status_textarea").focus();
}
var options = {dataType: 'xml',
success: function(xml) {
// replace the form with what's returned
};
$("form.favor").ajaxForm(options);
$("form.disfavor").ajaxForm(options);
});
function doreply(nick) {