]> source.dussan.org Git - sonarqube.git/commitdiff
Revert "SONAR-3524 Impossible to go back on empty treemap"
authorJulien Lancelot <julien.lancelot@gmail.com>
Wed, 21 Aug 2013 10:18:48 +0000 (12:18 +0200)
committerJulien Lancelot <julien.lancelot@gmail.com>
Wed, 21 Aug 2013 10:18:48 +0000 (12:18 +0200)
This reverts commit 668c03e9d570c5a5800c0db2092251bb26a9933f.

sonar-server/src/main/webapp/javascripts/application.js

index 4dd69d27b1d5ba70b1e344b89be4a711b3ce5998..501fd589a246ce89487923808420cfcae76ae4a5 100644 (file)
@@ -213,48 +213,38 @@ Treemap.prototype.rootNode = function () {
 
 Treemap.prototype.initNodes = function () {
   var self = this;
-  console.log(this);
   $j('#tm-' + this.id).find('a').each(function (index) {
     $j(this).on("click", function (event) {
       event.stopPropagation();
     });
   });
-  if ($j('#tm-' + this.id).is(':empty')){
-    // SONAR-3524
-    // If the content is empty, then the right click should lead to return to the parent (will in fact reload the page)
-    $j('#tm-' + this.id).on("contextmenu", function (event) {
-      location.reload();
+  $j('#tm-' + this.id).find('[rid]').each(function (index) {
+    $j(this).on("contextmenu", function (event) {
+      event.stopPropagation();
+      event.preventDefault();
+      // right click
+      if (self.breadcrumb.length > 1) {
+        self.breadcrumb.pop();
+        self.load();
+      } else if (self.breadcrumb.length == 1) {
+        $j("#tm-loading-" + self.id).show();
+        location.reload();
+      }
       return false;
     });
-  } else {
-    $j('#tm-' + this.id).find('[rid]').each(function (index) {
-      $j(this).on("contextmenu", function (event) {
-        event.stopPropagation();
-        event.preventDefault();
-        // right click
-        if (self.breadcrumb.length > 1) {
-          self.breadcrumb.pop();
+    $j(this).on("click", function (event) {
+        var source = $j(this);
+        var rid = source.attr('rid');
+        var has_leaves = !!(source.attr('l'));
+        if (!has_leaves) {
+          var context = new TreemapContext(rid, source.text());
+          self.breadcrumb.push(context);
           self.load();
-        } else if (self.breadcrumb.length == 1) {
-          $j("#tm-loading-" + self.id).show();
-          location.reload();
         }
-        return false;
-      });
-      $j(this).on("click", function (event) {
-          var source = $j(this);
-          var rid = source.attr('rid');
-          var has_leaves = !!(source.attr('l'));
-          if (!has_leaves) {
-            var context = new TreemapContext(rid, source.text());
-            self.breadcrumb.push(context);
-            self.load();
-          }
 
-        }
-      );
-    });
-  }
+      }
+    );
+  });
 };
 
 function openModalWindow(url, options) {