damus.io

damus.io website
git clone git://jb55.com/damus.io
Log | Files | Refs | README | LICENSE

commit 67b246177171f5dbed4f231bde3f967f7e4110db
parent 08aeec6783e65f3bd2fd6fbdf875be10b585ec7d
Author: William Casarin <jb55@jb55.com>
Date:   Sat, 12 Nov 2022 13:13:20 -0800

update ctags command

Diffstat:
Mweb/Makefile | 2+-
Mweb/js/damus.js | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/web/Makefile b/web/Makefile @@ -3,7 +3,7 @@ all: fake @echo "you don't need to build anything." tags: fake - ctags damus.js nostr.js > $@ + find js -name '*.js' | grep -v noble-secp256k1 | xargs ctags > "$@" emojiregex: fake @curl -sL 'https://raw.githubusercontent.com/mathiasbynens/emoji-test-regex-pattern/main/dist/latest/javascript.txt' diff --git a/web/js/damus.js b/web/js/damus.js @@ -728,7 +728,7 @@ function shouldnt_render_event(model, ev, opts) { } function press_logout() { - if (confirm("Are you sure you want to logout?")) { + if (confirm("Are you sure you want to sign out?")) { localStorage.clear(); const url = new URL(location.href) url.searchParams.delete("pk")