summaryrefslogtreecommitdiff
path: root/js/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/util.js')
-rw-r--r--js/util.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/util.js b/js/util.js
index a699f4e90..0f2e365c3 100644
--- a/js/util.js
+++ b/js/util.js
@@ -69,12 +69,12 @@ $(document).ready(function(){
$('form#'+id).replace(new_form);
}};
- function addAjaxHidden(form) {
- ajax = document.createElement('input');
+ function addAjaxHidden() {
+ var ajax = document.createElement('input');
ajax.setAttribute('type', 'hidden');
ajax.setAttribute('name', 'ajax');
ajax.setAttribute('value', 1);
- form.appendChild(ajax);
+ this.appendChild(ajax);
}
$("form.favor").ajaxForm(favoptions);