Clean up mousemove handler and remove unused tooltip code

This commit is contained in:
Matthias Jentsch 2014-09-08 16:46:47 +02:00
parent 28f5ef2284
commit 56b779af4d
2 changed files with 1 additions and 3 deletions

View File

@ -699,6 +699,7 @@
$(document).off('mouseenter', 'li.dropdown', this.dropdownHover);
$(document).off('mouseleave', 'li.dropdown', this.dropdownLeave);
$(document).off('click', 'div.tristate .tristate-dummy', this.clickTriState);
$(document).off('mousemove');
},
destroy: function() {

View File

@ -10,9 +10,6 @@
'use strict';
// The currently hovered tooltip
var tooltip = null;
// Stores the icinga-data-url of the last focused table.
var focusedTableDataUrl = null;