From c61b3f91382a533ab942eb2f10880df6a0fda4ec Mon Sep 17 00:00:00 2001 From: Christian Guenter Date: Sun, 19 May 2019 11:10:07 +0200 Subject: [PATCH] some UI cleanup --- src/ui/zabapgit_js_common.w3mi.data.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/zabapgit_js_common.w3mi.data.js b/src/ui/zabapgit_js_common.w3mi.data.js index 31610b0e8..d8a8d8b67 100644 --- a/src/ui/zabapgit_js_common.w3mi.data.js +++ b/src/ui/zabapgit_js_common.w3mi.data.js @@ -795,7 +795,7 @@ LinkHints.prototype.removeAllTooltips = function () { }; -LinkHints.prototype.filterTooltips = function (sPending) { // eslint-disable-line no-unused-vars +LinkHints.prototype.filterTooltips = function () { Object .keys(this.oTooltipMap) @@ -863,7 +863,7 @@ LinkHints.prototype.onkeypress = function(oEvent){ } else { // we are not there yet, but let's filter the link so that only // the partially matched are shown - this.filterTooltips(this.sPending); + this.filterTooltips(); this.disableTooltipsIfNoTooltipIsVisible(); } @@ -1371,7 +1371,7 @@ BranchOverview.prototype.showCommit = function(event){ }; // Called by commit:mouseout -BranchOverview.prototype.hideCommit = function (event){ // eslint-disable-line no-unused-vars +BranchOverview.prototype.hideCommit = function (){ this.toggleCommit(); };