]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Bind submit to a form by SN.U.FormXHR() only once.
authorSarven Capadisli <csarven@status.net>
Sat, 28 Nov 2009 14:27:04 +0000 (14:27 +0000)
committerSarven Capadisli <csarven@status.net>
Sat, 28 Nov 2009 14:27:04 +0000 (14:27 +0000)
js/util.js

index f3b71cea8bb54d21d316de9cca30d50cce0d5184..f7f3d5e76a9fda2f2a4d0e2f051854d2fa7fffea 100644 (file)
@@ -131,34 +131,37 @@ var SN = { // StatusNet
         },
 
         FormXHR: function(f) {
-            f.bind('submit', function(e) {
-                form_id = $(this)[0].id;
-                $.ajax({
-                    type: 'POST',
-                    dataType: 'xml',
-                    url: $(this)[0].action,
-                    data: $(this).serialize() + '&ajax=1',
-                    beforeSend: function(xhr) {
-                        $('#'+form_id).addClass(SN.C.S.Processing);
-                        $('#'+form_id+' .submit').addClass(SN.C.S.Disabled);
-                        $('#'+form_id+' .submit').attr(SN.C.S.Disabled, SN.C.S.Disabled);
-                    },
-                    error: function (xhr, textStatus, errorThrown) {
-                        alert(errorThrown || textStatus);
-                    },
-                    success: function(data, textStatus) {
-                        if (typeof($('form', data)[0]) != 'undefined') {
-                            form_new = document._importNode($('form', data)[0], true);
-                            $('#'+form_id).replaceWith(form_new);
-                            $('#'+form_new.id).each(function() { SN.U.FormXHR($(this)); });
-                        }
-                        else {
-                            $('#'+form_id).replaceWith(document._importNode($('p', data)[0], true));
+            if (jQuery.data(f[0], "ElementData") === undefined) {
+                jQuery.data(f[0], "ElementData", {Bind:'submit'});
+                f.bind('submit', function(e) {
+                    form_id = $(this)[0].id;
+                    $.ajax({
+                        type: 'POST',
+                        dataType: 'xml',
+                        url: $(this)[0].action,
+                        data: $(this).serialize() + '&ajax=1',
+                        beforeSend: function(xhr) {
+                            $('#'+form_id).addClass(SN.C.S.Processing);
+                            $('#'+form_id+' .submit').addClass(SN.C.S.Disabled);
+                            $('#'+form_id+' .submit').attr(SN.C.S.Disabled, SN.C.S.Disabled);
+                        },
+                        error: function (xhr, textStatus, errorThrown) {
+                            alert(errorThrown || textStatus);
+                        },
+                        success: function(data, textStatus) {
+                            if (typeof($('form', data)[0]) != 'undefined') {
+                                form_new = document._importNode($('form', data)[0], true);
+                                $('#'+form_id).replaceWith(form_new);
+                                $('#'+form_new.id).each(function() { SN.U.FormXHR($(this)); });
+                            }
+                            else {
+                                $('#'+form_id).replaceWith(document._importNode($('p', data)[0], true));
+                            }
                         }
-                    }
+                    });
+                    return false;
                 });
-                return false;
-            });
+            }
         },
 
         FormNoticeXHR: function(form) {