change edit button to move icon
authorAndrew Lorimer <andrew@lorimer.id.au>
Wed, 15 Sep 2021 06:44:21 +0000 (16:44 +1000)
committerAndrew Lorimer <andrew@lorimer.id.au>
Wed, 15 Sep 2021 06:44:21 +0000 (16:44 +1000)
README.md
build/newtab.crx
src/main.js
index b096d3bdd374028971ddfc680e14e29664e9f28d..b65079b04174fa3e7f562849765cd0a76dc54fb1 100644 (file)
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Unfortunately installation is a little protracted because Google wants all exten
 
 You can still install it as a local extension in developer mode:
 
-1. Go to <chrome://extensions> and turn on developer mode (top right)
+1. Go to `chrome://extensions` and turn on developer mode (top right)
 2. Download <a href="/newtab.git/tree/build/newtab.crx" download="/newtab.git/tree/build/newtab.crx">build/newtab.crx</a> ("Save link as...", don't install it straight away - see below)
 3. Drag the file onto the extensions page to install it
 
index 23c8ef641bcdf8e80ff870782854f05fa66d731c..4d97651c2f80449d19a0e7cc14c6feef8fb5e92b 100644 (file)
Binary files a/build/newtab.crx and b/build/newtab.crx differ
index 3af538f7857854c43f3a391643cb0b0111d5200d..b63bcc8cea3ccadd5f341797fc5ab4163e8b1b47 100644 (file)
@@ -1,3 +1,4 @@
+var move = "✥"
 var tick = "✔";
 var addText = "+";
 var rmText = "−";
@@ -227,7 +228,7 @@ function closeEdit(editBtn) {
 
   editMode = false;
   editBtn.style.background = "";
-  editBtn.innerText = "e";
+  editBtn.innerText = move;
 
   var addBtn = document.getElementById("addcol");
   addBtn.style.display = "none";