From 23eeb73e95a27d1fbf6af1eacf98ec46f5a0148e Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Fri, 25 Nov 2022 11:00:01 +0100 Subject: [PATCH] WIP: Begin new module --- build.properties.d/00_default.properties | 1 + src/core/js/ext_prop_display.js | 28 ++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 src/core/js/ext_prop_display.js diff --git a/build.properties.d/00_default.properties b/build.properties.d/00_default.properties index cd57b632..19fbe7af 100644 --- a/build.properties.d/00_default.properties +++ b/build.properties.d/00_default.properties @@ -179,4 +179,5 @@ MODULE_DEPENDENCIES=( ckeditor.js ext_editmode_wysiwyg_text.js reference_resolver/caosdb_default_person.js + ext_prop_display.js ) diff --git a/src/core/js/ext_prop_display.js b/src/core/js/ext_prop_display.js new file mode 100644 index 00000000..b94403de --- /dev/null +++ b/src/core/js/ext_prop_display.js @@ -0,0 +1,28 @@ +/* + * This file is a part of the CaosDB Project. + * + * Copyright (C) 2022 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2022 Florian Spreckelsen <f.spreckelsen@indiscale.com> + * + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU Affero General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more + * details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + * + */ +'use strict'; + +/** + * + */ +var prop_display = new function () {} + +$(document).ready(() => caosdb_modules.register(prop_display)); -- GitLab