]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2218 add a "loading" image when clicking a resource in drilldown pages
authorsimonbrandhof <simon.brandhof@gmail.com>
Mon, 7 Mar 2011 14:26:32 +0000 (15:26 +0100)
committersimonbrandhof <simon.brandhof@gmail.com>
Mon, 7 Mar 2011 14:26:32 +0000 (15:26 +0100)
sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/_header.html.erb

index 4a5e5fa59a0892b708a8628d26ce61d6cdbbf85e..f8556da363655eba587626d52e1ad24bc937fb60 100644 (file)
@@ -4,6 +4,9 @@
 <script>
   /* display resource */
   function d(resourceId) {
+    var loading = new Image();
+    loading.src = "<%= ApplicationController.root_context-%>/images/loading.gif";
+    $('resource_container').update(loading);
     new Ajax.Updater('resource_container', '<%= ApplicationController.root_context-%>/resource/index/' + resourceId + '?metric=<%= @metric.id if @metric -%>&rule=<%= @rule ? @rule.id : params[:priority] -%>&period=<%= @period -%>', {asynchronous:true, evalScripts:true});
     return false;
   }