mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-23 08:33:38 +01:00
[bug] fix date separator
This commit is contained in:
parent
8bb24e7afd
commit
3317489845
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nightTab",
|
"name": "nightTab",
|
||||||
"version": "5.37.1",
|
"version": "5.37.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nightTab",
|
"name": "nightTab",
|
||||||
"version": "5.37.1",
|
"version": "5.37.2",
|
||||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -132,7 +132,7 @@ var date = (function() {
|
|||||||
if (helper.checkIfValidString(state.get.current().header.date.separator.text)) {
|
if (helper.checkIfValidString(state.get.current().header.date.separator.text)) {
|
||||||
separatorCharacter = helper.trimString(state.get.current().header.date.separator.text);
|
separatorCharacter = helper.trimString(state.get.current().header.date.separator.text);
|
||||||
} else {
|
} else {
|
||||||
separatorCharacter = ":";
|
separatorCharacter = "/";
|
||||||
};
|
};
|
||||||
var parts = date.querySelectorAll("span");
|
var parts = date.querySelectorAll("span");
|
||||||
if (parts.length > 1) {
|
if (parts.length > 1) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
var version = (function() {
|
var version = (function() {
|
||||||
|
|
||||||
var current = "5.37.1";
|
var current = "5.37.2";
|
||||||
|
|
||||||
var name = "Zonked Tarsier";
|
var name = "Zonked Tarsier";
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"name": "nightTab",
|
"name": "nightTab",
|
||||||
"short_name": "nightTab",
|
"short_name": "nightTab",
|
||||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||||
"version": "5.37.1",
|
"version": "5.37.2",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"chrome_url_overrides": {
|
"chrome_url_overrides": {
|
||||||
"newtab": "index.html"
|
"newtab": "index.html"
|
||||||
|
Loading…
Reference in New Issue
Block a user