diff --git a/build.properties.d/00_default.properties b/build.properties.d/00_default.properties index cd57b632e2ea2b9ab005c7185a309a9594f123ff..19fbe7afab4b0e50b8e75e7bbb706ed8ce337eaa 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 0000000000000000000000000000000000000000..b94403def289acbbba76a118ca4479dde07beb54 --- /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));