mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-10 15:40:28 +00:00
30 lines
796 B
JavaScript
30 lines
796 B
JavaScript
|
var ComponentsEditors = function () {
|
||
|
|
||
|
var handleWysihtml5 = function () {
|
||
|
if (!jQuery().wysihtml5) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if ($('.wysihtml5').size() > 0) {
|
||
|
$('.wysihtml5').wysihtml5({
|
||
|
"stylesheets": ["../../assets/global/plugins/bootstrap-wysihtml5/wysiwyg-color.css"]
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var handleSummernote = function () {
|
||
|
$('#summernote_1').summernote({height: 300});
|
||
|
//API:
|
||
|
//var sHTML = $('#summernote_1').code(); // get code
|
||
|
//$('#summernote_1').destroy(); // destroy
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
//main function to initiate the module
|
||
|
init: function () {
|
||
|
handleWysihtml5();
|
||
|
handleSummernote();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}();
|