]> source.dussan.org Git - sonarqube.git/commitdiff
Fix treemap on IE7
authorSimon Brandhof <simon.brandhof@gmail.com>
Mon, 17 Dec 2012 16:05:16 +0000 (17:05 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Mon, 17 Dec 2012 17:15:56 +0000 (18:15 +0100)
sonar-server/src/main/webapp/javascripts/application.js

index aa0d8c0a94bb71e73ffddcfcb7eba900124cbdb8..da287a6ef9b75a59263e7e387d0b79e59470f255 100644 (file)
@@ -209,12 +209,12 @@ Treemap.prototype.rootNode = function () {
 Treemap.prototype.initNodes = function () {
   var self = this;
   $j('#tm-' + this.id).find('a').each(function (index) {
-    this.on("mouseup", function (event) {
-      event.stopPropagation()
+    $j(this).on("click", function (event) {
+      event.stopPropagation();
     });
   });
   $j('#tm-' + this.id).find('[rid]').each(function (index) {
-    this.on("contextmenu", function (event) {
+    $j(this).on("contextmenu", function (event) {
       event.stopPropagation();
       event.preventDefault();
       // right click
@@ -227,8 +227,7 @@ Treemap.prototype.initNodes = function () {
       }
       return false;
     });
-
-    this.on("click", function (event) {
+    $j(this).on("click", function (event) {
         var source = $j(this);
         var rid = source.attr('rid');
         var has_leaves = !!(source.attr('l'));