We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b96ab6e commit 7d4671eCopy full SHA for 7d4671e
options.html
@@ -6,11 +6,10 @@
6
</head>
7
8
<body>
9
-
10
- Your Shaarli instance:
+ <label for="shaarliInstance">Your Shaarli instance:</label>
+ <br>
11
<input type="text" name="shaarliInstance" id="shaarliInstance">
12
13
- <div id="status"></div>
14
<button id="save">Save</button>
15
16
<script src="options.js"></script>
options.js
@@ -1,5 +1,5 @@
1
function save_options() {
2
- var shaarliInstance = document.getElementById('shaarliInstance').value;
+ const shaarliInstance = document.getElementById('shaarliInstance').value;
3
chrome.storage.sync.set({
4
savedShaarliInstance: shaarliInstance
5
}, function () {
0 commit comments