From 18bcdaf3c4a09ff8bba754a1c9b6e3e3fb7d6999 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Sat, 8 Mar 2014 17:24:06 -0700 Subject: [PATCH] Index.navLinks wasn't getting properly riced in my Chrome So it probably wouldn't get properly riced in someone else's browser, so let's not take chances. --- builds/appchan-x.user.js | 1 + builds/crx/script.js | 1 + src/General/Index.coffee | 2 ++ 3 files changed, 4 insertions(+) diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 9f633f892..bbe56dcb5 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -4757,6 +4757,7 @@ className: 'navLinks', innerHTML: "Return Bottom  " }); + Rice.nodes(this.navLinks); this.searchInput = $('#index-search', this.navLinks); this.searchTest(); this.hideLabel = $('#hidden-label', this.navLinks); diff --git a/builds/crx/script.js b/builds/crx/script.js index c25ffff00..cb13c1641 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -4815,6 +4815,7 @@ className: 'navLinks', innerHTML: "Return Bottom  " }); + Rice.nodes(this.navLinks); this.searchInput = $('#index-search', this.navLinks); this.searchTest(); this.hideLabel = $('#hidden-label', this.navLinks); diff --git a/src/General/Index.coffee b/src/General/Index.coffee index 6069b305e..82afec56d 100644 --- a/src/General/Index.coffee +++ b/src/General/Index.coffee @@ -94,6 +94,8 @@ Index = className: 'navLinks' innerHTML: <%= importHTML('Features/Index-navlinks') %> + Rice.nodes @navLinks + @searchInput = $ '#index-search', @navLinks @searchTest()