
js.staticcontent.edit.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-core-ui Show documentation
Show all versions of molgenis-core-ui Show documentation
Spaghetti module containing core plugins and legacy UI components.
(function($, molgenis) {
"use strict";
$(function() {
tinymce.init({
selector: "textarea#elm1",
theme: "modern",
plugins: [
"advlist autolink lists link charmap print preview anchor",
"searchreplace visualblocks code fullscreen",
"insertdatetime table contextmenu paste"
],
convert_urls: false,
toolbar: "insertfile undo redo | styleselect fontselect fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link",
setup : function(ed) {
ed.on('change', function(e) {
$('#submitBtn').prop('disabled', false);
});
}
});
$('#submitBtn').prop('disabled', true);
});
}($, window.top.molgenis = window.top.molgenis || {}));
© 2015 - 2025 Weber Informatics LLC | Privacy Policy