texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: js/info.js (cache_index_links): Fix thinko alink-


From: Per Bothner
Subject: branch master updated: js/info.js (cache_index_links): Fix thinko alink->link.
Date: Tue, 27 Apr 2021 19:57:56 -0400

This is an automated email from the git hooks/post-receive script.

bothner pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 5fd1988  js/info.js (cache_index_links): Fix thinko alink->link.
5fd1988 is described below

commit 5fd19884addf052005af651bb8f7b44736ff3b40
Author: Per Bothner <per@bothner.com>
AuthorDate: Tue Apr 27 16:57:28 2021 -0700

    js/info.js (cache_index_links): Fix thinko alink->link.
---
 ChangeLog  | 4 ++++
 js/info.js | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index d9d5106..324ed86 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2021-04-27  Per Bothner  <per@bothner.com>
 
+       * js/info.js (cache_index_links): Fix thinko alink->link.
+
+2021-04-27  Per Bothner  <per@bothner.com>
+
        Change how "show/hide sidebar" button is displayed.
        Move it to upper-left and use arrows, to hopefully both
        make it more visible and take less space in hide mode.
diff --git a/js/info.js b/js/info.js
index 9a38714..ac0d11f 100644
--- a/js/info.js
+++ b/js/info.js
@@ -142,7 +142,7 @@
       for (var i = 0; i < links.length; i += 1)
         {
           var link = links[i];
-          dict[link.textContent] = href_hash (link_href (alink));
+          dict[link.textContent] = href_hash (link_href (link));
         }
       return { type: "cache-index-links", links: dict };
     },



reply via email to

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