Update about info
This commit is contained in:
parent
34181cf5ba
commit
7af6c3d14b
21
index.html
21
index.html
|
@ -4,9 +4,9 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="description" content="A new tab page">
|
<meta name="description" content="Start - A new tab page">
|
||||||
<meta name="author" content="Neil Brommer">
|
<meta name="author" content="Neil Brommer">
|
||||||
<link rel="icon" href="favicon.png">
|
<link rel="icon" href="/favicon.png">
|
||||||
|
|
||||||
<title>Start</title>
|
<title>Start</title>
|
||||||
|
|
||||||
|
@ -125,7 +125,7 @@
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
This page keeps a list of bookmarks separated into groups. It's intended to be used a a new tab page.
|
This page keeps a list of bookmarks separated into groups. It's intended to be used a a new tab page.
|
||||||
It uses localStorage to store the list of bookmarks rather than storing them server side.
|
It uses IndexedDB to store the list of bookmarks in the browser rather than storing them server side.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
This site uses Danny Care's <a href="https://danny.care/portfolio/bitday/" target="_blank">Bitday</a>
|
This site uses Danny Care's <a href="https://danny.care/portfolio/bitday/" target="_blank">Bitday</a>
|
||||||
|
@ -137,12 +137,11 @@
|
||||||
<a href="http://fontawesome.io/">Font Awesome</a>.
|
<a href="http://fontawesome.io/">Font Awesome</a>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Adding/editing bookmarks and groups is currently not implemented. To add or edit them, you need to use
|
Editing bookmarks is currently not supported. To move, change, or delete bookmarks,
|
||||||
the import/export feature and manually build a JSON object yourself. The format for the import/export
|
you need to use the import/export function and manually edit the JSON data. The format
|
||||||
JSON is:
|
for this is:
|
||||||
</p>
|
</p>
|
||||||
<pre>
|
<pre class="rounded border"><code>[
|
||||||
[
|
|
||||||
{
|
{
|
||||||
"title": "Group title",
|
"title": "Group title",
|
||||||
"bookmarks": [
|
"bookmarks": [
|
||||||
|
@ -165,8 +164,10 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]</code></pre>
|
||||||
</pre>
|
<p>
|
||||||
|
To remove all bookmarks, just import <code>[]</code> (an empty list).
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||||||
|
|
|
@ -206,6 +206,8 @@ function loadBookmarks() {
|
||||||
"name": "reddit",
|
"name": "reddit",
|
||||||
"address": "https://www.reddit.com/"
|
"address": "https://www.reddit.com/"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("#aboutModal").modal("show");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue