Skip to content

Commit b481068

Browse files
committed
uploaded
1 parent a14d09e commit b481068

File tree

7 files changed

+3
-11
lines changed

7 files changed

+3
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*digs.html*
2+
*.zip

firefox/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@ browser.runtime.onMessage.addListener((msg, sender, sendResponse) => {
152152
});
153153
}
154154
return true;
155-
});
155+
});

firefox/icons/dig-128.png

2.25 KB
Loading

firefox/manifest.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@
99
"default_popup" : "popup.html",
1010
"default_title" : "Digraphs"
1111
},
12-
"browser_specific_settings" : {
13-
"gecko" : {
14-
"id" : "vim.digraphs@jenca.sk"
15-
}
16-
},
1712
"content_scripts" : [
1813
{
1914
"js" : [

firefox/popup.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ function stringReverse(st) {
1010
return [...st].reverse().join("");
1111
}
1212

13-
function elFromString(st) {
14-
const template = document.createElement("template");
15-
template.innerHTML = st.trim();
16-
return template.content.firstElementChild;
17-
}
13+
1814

1915
function buildKeyName(key, modifiers) {
2016
var keyName = key.charAt(0).toUpperCase() + key.slice(1);

screenshots/screenshot-1.png

35.3 KB
Loading

screenshots/screenshot-2.png

236 KB
Loading

0 commit comments

Comments
 (0)