cleanup after update check merge

This commit is contained in:
zadam 2021-11-14 13:45:37 +01:00
parent 364ac331da
commit 242977c7a5
3 changed files with 0 additions and 15 deletions

View file

@ -1,7 +1,6 @@
import server from "../../services/server.js";
import utils from "../../services/utils.js";
import appContext from "../../services/app_context.js";
import convertUtils from "../../services/convert_utils.js";
const FONT_FAMILIES = [
{ value: "theme", label: "Theme defined" },
@ -29,12 +28,6 @@ const FONT_FAMILIES = [
];
const TPL = `
<style>
.disabled-form-label {
opacity: 0.5;
}
</style>
<p><strong>Settings on this options tab are saved automatically after each change.</strong></p>
<form>

View file

@ -45,7 +45,6 @@ import EditedNotesWidget from "../widgets/ribbon_widgets/edited_notes.js";
import OpenNoteButtonWidget from "../widgets/buttons/open_note_button_widget.js";
import MermaidWidget from "../widgets/mermaid.js";
import BookmarkButtons from "../widgets/bookmark_buttons.js";
import UpdateAvailableWidget from "../widgets/buttons/update_available.js";
export default class DesktopLayout {
constructor(customWidgets) {

View file

@ -1,7 +0,0 @@
function parseBoolean(value) {
return value.toLowerCase() === "true";
}
export default {
parseBoolean
}