texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Gavin D. Smith
Date: Wed, 30 Nov 2022 13:36:36 -0500 (EST)

branch: old/qt-info
commit a5fa5669cd3419bc9ec9295ff7d20c9f856854e3
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Wed Apr 10 15:22:33 2019 +0100

    * js/info.js (web_channel_override) <input>: Only override for
    index searches, not menu searches.
---
 ChangeLog  | 5 +++++
 js/info.js | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 418ea3f0e8..06f2b348a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-04-09  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       * js/info.js (web_channel_override) <input>: Only override for 
+       index searches, not menu searches.
+
 2019-04-09  Gavin Smith  <gavinsmith0123@gmail.com>
 
        * js/info.js (web_channel_override) <input>: Add override.  This 
diff --git a/js/info.js b/js/info.js
index c438ca1f73..6ca994aca9 100644
--- a/js/info.js
+++ b/js/info.js
@@ -2151,7 +2151,8 @@ function web_channel_override (store, action)
       }
     case "input":
       {
-        window.core.show_text_input (action.input);
+        if (action.input == "index")
+          window.core.show_text_input (action.input);
         return 1;
       }
     default:



reply via email to

[Prev in Thread] Current Thread [Next in Thread]