Skip to content

Commit 01e433a

Browse files
committed
Remove debug statements
1 parent 48d926f commit 01e433a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/_static/javascripts/version_dropdown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function href(url, path) {
1010
const defaultURL = url + "/index.html";
1111
url += "/" + path;
12-
console.log(url);
12+
1313
// If a versioned resource exists, return the resource's URL; otherwise, return a default URL:
1414
return fetch(url).then(onResponse).catch(onError);
1515

@@ -86,7 +86,7 @@ async function add_version_dropdown(json_loc, target_loc, text) {
8686

8787
// Check whether the user is currently on a resource page (e.g., is viewing the specification for a particular function):
8888
let path = currentURL.split(/_site|array\-api/)[1];
89-
console.log(path);
89+
9090
// Extract the resource subpath:
9191
if (path) {
9292
path = path.split("/");

0 commit comments

Comments
 (0)