]> git.mxchange.org Git - friendica.git/blobdiff - include/main.js
no insecure warning on FB connections
[friendica.git] / include / main.js
index 1710115af8b3fa1476836b9b04ead72e0b562d44..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"  
          );  
     }  
 
        function groupChangeMember(gid,cid) {
+               $('body .fakelink').css('cursor', 'wait');
                $.get('group/' + gid + '/' + cid, function(data) {
                                $('#group-update-wrapper').html(data);
-                               $('#group-update2-wrapper').html(data);
-                               
+                               $('body .fakelink').css('cursor', 'auto');                              
                });
        }
+
+       function profChangeMember(gid,cid) {
+               $('body .fakelink').css('cursor', 'wait');
+               $.get('profperm/' + gid + '/' + cid, function(data) {
+                               $('#prof-update-wrapper').html(data);
+                               $('body .fakelink').css('cursor', 'auto');                              
+               });
+       }
+