From f74c6a8eeda788788694bcd5de4369a3956567b4 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 7 Jan 2019 01:34:59 -0500 Subject: Set img src when explore fragment changes --- explore.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/explore.html b/explore.html index 3d5e1bc..d9b1ddb 100644 --- a/explore.html +++ b/explore.html @@ -64,14 +64,19 @@ Code is available from let uarr = document.getElementById("uarr"); let rarr = document.getElementById("rarr"); - let state = new URLSearchParams(document.location.hash.slice(1)); + let state = new URLSearchParams(); function setImage() { let url = new URL(tile.src); url.search = "?" + state.toString(); tile.src = url.toString(); } - setImage(); + + window.onhashchange = function() { + state = new URLSearchParams(document.location.hash.slice(1)); + setImage(); + } + window.onhashchange(); function setState(x, y) { state.set("x", x); -- cgit 1.4.1 t'>
summary refs log tree commit diff
path: root/bin/cash/libedit/hist.h (unfollow)
Commit message (Collapse)Author
2019-02-08Improve ANSI output and base IRC on itJune McEnroe
2019-02-08Add hi -nJune McEnroe
2019-02-08Elaborate hi man pageJune McEnroe
2019-02-08Use set for parent in hiJune McEnroe
2019-02-08Switch back to semantic keyword grouping in hiJune McEnroe
2019-02-08Match only the basename in hiJune McEnroe
2019-02-07Add mdoc syntax to hiJune McEnroe
2019-02-07Support multi-line C macros in hiJune McEnroe
2019-02-07Detect .mk files as makeJune McEnroe
2019-02-07Add make syntax to hiJune McEnroe
2019-02-07Add IRC output to hiJune McEnroe
2019-02-07Improve C syntax accuracy and add Format classJune McEnroe
2019-02-07Factor out hi checkJune McEnroe
Fix subexpression bounds check and compile pattends.
2019-02-07Add Escape class to hiJune McEnroe
2019-02-07Add Todo class and parent syntax constraintJune McEnroe