]> git.mxchange.org Git - friendica.git/commitdiff
"wait" cursor when submitting comments bug #45
authorFriendika <info@friendika.com>
Tue, 19 Apr 2011 02:08:50 +0000 (19:08 -0700)
committerFriendika <info@friendika.com>
Tue, 19 Apr 2011 02:08:50 +0000 (19:08 -0700)
include/main.js

index 1c695265d14a81e25c78364f40c9a20592093462..a251d8e3a3976b1a07e473e168bbd7904bc4a9de 100644 (file)
@@ -27,6 +27,7 @@
        var liking = 0;
        var in_progress = false;
        var langSelect = false;
+       var commentBusy = false;
 
        $(document).ready(function() {
                $.ajaxSetup({cache: false});
                        }) ;
                }
                timer = setTimeout(NavUpdate,30000);
-
        }
 
        function liveUpdate() {
                                prev = ident; 
                        });
                        $('.like-rotator').hide();
+                       if(commentBusy) {
+                               commentBusy = false;
+                               $('body').css('cursor', 'auto');
+                       }
                });
-
        }
 
        function imgbright(node) {
        }
 
        function post_comment(id) {
+               commentBusy = true;
+               $('body').css('cursor', 'wait');
                $.post(  
              "item",  
              $("#comment-edit-form-" + id).serialize(),
                                if(data.reload) {
                                        window.location.href=data.reload;
                                }
-                                       
                        },
                        "json"  
          );