From 5a897b3f69d0fdadd39a0df49f93c01a1bfd8385 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 03 Jul 2014 07:57:48 -0400
Subject: [PATCH] Fix blinking selection when moving cursor on autocomplete list text

---
 program/js/app.js |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index 2b9c3f0..a3060a8 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -4546,10 +4546,6 @@
       this.ksearch_pane = $('<div>').attr('id', 'rcmKSearchpane').attr('role', 'listbox')
         .css({ position:'absolute', 'z-index':30000 }).append(ul).appendTo(document.body);
       this.ksearch_pane.__ul = ul[0];
-
-      // register (delegate) event handlers
-      ul.on('mouseover', 'li', function(e){ ref.ksearch_select(e.target); })
-        .on('mouseup', 'li', function(e){ ref.ksearch_click(e.target); })
     }
 
     ul = this.ksearch_pane.__ul;
@@ -4580,6 +4576,8 @@
           .html(this.quote_html(text.replace(new RegExp('('+RegExp.escape(value)+')', 'ig'), '##$1%%')).replace(/##([^%]+)%%/g, '<b>$1</b>'))
           .addClass(type || '')
           .appendTo(ul)
+          .mouseover(function() { ref.ksearch_select(this); })
+          .mouseup(function() { ref.ksearch_click(this); })
           .get(0)._rcm_id = id;
         maxlen -= 1;
       }

--
Gitblit v1.9.1