Fixed active first item on non-hint menus
diff --git a/dev/js/src/hint/menu.js b/dev/js/src/hint/menu.js
index bf965d7..4704bd2 100644
--- a/dev/js/src/hint/menu.js
+++ b/dev/js/src/hint/menu.js
@@ -15,6 +15,9 @@
       obj._element.classList.add('hint');
       obj._hint = hint;
 
+      // Make the top item always active
+      obj._firstActive = true;
+
       // This is only domspecific
       obj.element().addEventListener('blur', function (e) {
 	this.menu.hide();