3106: display spinner when modal dialogs are communicating with server.
[arvados.git] / apps / workbench / app / assets / javascripts / application.js
index 1ade33f0cc9ae81ecd534ecf01d1533f0e2bf354..d21c4b5625447617b9f4ceaea33f8762e8f69f26 100644 (file)
@@ -29,6 +29,13 @@ jQuery(function($){
             'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content')
         }
     });
+
+    $(document).ajaxStart(function(){
+      $('.modal-with-loading-spinner .spinner').show();
+    }).ajaxStop(function(){
+      $('.modal-with-loading-spinner .spinner').hide();
+    });
+
     $('[data-toggle=tooltip]').tooltip();
 
     $('.expand-collapse-row').on('click', function(event) {