azkaban-aplcache

Removed bootstrap tooltip on the job list, because it does weird

1/15/2014 3:17:47 AM

Details

diff --git a/src/web/js/azkaban/view/flow-job.js b/src/web/js/azkaban/view/flow-job.js
index 6efed62..c68e279 100644
--- a/src/web/js/azkaban/view/flow-job.js
+++ b/src/web/js/azkaban/view/flow-job.js
@@ -109,7 +109,7 @@ azkaban.JobListView = Backbone.View.extend({
 				var child = $(liElement).children("a");
 				$(child).removeClass(statusList.join(' '));
 				$(child).addClass(node.status);
-				$(child).attr("title", node.status + " (" + node.type + ")").tooltip('fixTitle');
+				$(child).attr("title", node.status + " (" + node.type + ")");
 			}
 			
 			if (node.nodes) {
@@ -126,7 +126,6 @@ azkaban.JobListView = Backbone.View.extend({
 //		this.assignInitialStatus(self);
 		this.handleDisabledChange(self);
 		this.changeStatuses(data, 0);
-		$("li.listElement > a").tooltip({delay: {show: 500, hide: 100}, placement: 'top'});
 	},
 	renderTree : function(el, data, prefix) {
 		var nodes = data.nodes;