diff --git a/.prettierrc b/.prettierrc index a0d7b8f..8a60a58 100644 --- a/.prettierrc +++ b/.prettierrc @@ -2,6 +2,5 @@ "useTabs": false, "tabWidth": 2, "semi": true, - "singleQuote": false, - "printWidth": 120 + "singleQuote": false } diff --git a/src/ui/app.ts b/src/ui/app.ts index b747981..05095a0 100644 --- a/src/ui/app.ts +++ b/src/ui/app.ts @@ -149,9 +149,9 @@ class ArchiveWebApp extends ReplayWebApp { } } - get appName() { - return "ArchiveWeb.page"; - } + // get appName() { + // return "ArchiveWeb.page"; + // } static get properties() { return { @@ -442,14 +442,14 @@ class ArchiveWebApp extends ReplayWebApp { } renderNavEnd() { - return html`  User Guide - + --> - `; - } + // renderAbout() { + // return html` + // + // `; + // } renderSettingsModal() { return html` @@ -1043,9 +1043,7 @@ class ArchiveWebApp extends ReplayWebApp { > ${this.settingsTab === "prefs" ? html`
-
- Optional archiving features: -
+
Optional archiving features:
Save Screenshots

- Save screenshot + thumbnail of every page on load. Screenshot will be saved as soon as page is done loading. + Save screenshot + thumbnail of every page on load. + Screenshot will be saved as soon as page is done loading.

@@ -1084,10 +1083,8 @@ class ArchiveWebApp extends ReplayWebApp { enable only when archiving websites that contain Flash.

-
-
- Privacy related settings: -
+
+
Privacy related settings:
- + -->
diff --git a/src/ui/coll.ts b/src/ui/coll.ts index 392d272..9c3c9f2 100644 --- a/src/ui/coll.ts +++ b/src/ui/coll.ts @@ -134,30 +134,30 @@ class WrRecColl extends Item { } } - protected renderToolbarLeft(isDropdown = false) { - const leftBar = super.renderToolbarLeft(); - - if (this.embed) { - return leftBar; - } - - return html`${leftBar} - - - - `; - } + // protected renderToolbarLeft(isDropdown = false) { + // const leftBar = super.renderToolbarLeft(); + + // if (this.embed) { + // return leftBar; + // } + + // return html`${leftBar} + // + // + // + // `; + // } protected renderToolbarRight() { const rightBar = super.renderToolbarRight(); diff --git a/src/utils.ts b/src/utils.ts index f45c7c9..74a8710 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -7,7 +7,7 @@ export async function ensureDefaultColl(collLoader) { let colls = await collLoader.listAll(); if (!colls.length) { - const metadata = { title: "My Archiving Session" }; + const metadata = { title: "My Archive" }; const result = await collLoader.initNewColl(metadata); await setLocalOption("defaultCollId", result.name);