From 6220cba6419b2bf78aad19d85c347ecc0fda2b53 Mon Sep 17 00:00:00 2001 From: Chris Broadfoot Date: Wed, 18 Jan 2017 12:06:52 -0800 Subject: [PATCH] [release-branch.go1.7] static: don't use the jQuery func for looking up based on hash $.find is safer. Change-Id: I51893b64ce804ac5a70f780a1255af2c91413110 Reviewed-on: https://go-review.googlesource.com/35430 Reviewed-by: Brad Fitzpatrick Reviewed-on: https://go-review.googlesource.com/35431 Reviewed-by: Chris Broadfoot --- godoc/static/godocs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/godoc/static/godocs.js b/godoc/static/godocs.js index 34724529..8f9ed259 100644 --- a/godoc/static/godocs.js +++ b/godoc/static/godocs.js @@ -247,7 +247,7 @@ function fixFocus() { function toggleHash() { // Open all of the toggles for a particular hash. var els = $(document.getElementById(window.location.hash.substring(1)), - $("a[name='" + window.location.hash.substring(1) + "']")); + $.find("a[name='" + window.location.hash.substring(1) + "']")); while (els.length) { for (var i = 0; i < els.length; i++) { var el = $(els[i]);