You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
825 B
32 lines
825 B
$(document).ready(function(){
|
|
|
|
$(".cbOpen").colorbox({iframe:true, width: $(window).width() - 40, height: $(window).height() - 40});
|
|
$(".cbOpenSmall").colorbox({iframe:true, width:"500px", height:"350px"});
|
|
|
|
tinymce.init({
|
|
selector: '.mce',
|
|
height: 200,
|
|
theme: 'modern',
|
|
menubar: false,
|
|
// language: 'it',
|
|
forced_root_block : '',
|
|
force_br_newlines : true,
|
|
pagebreak_separator: '%break%',
|
|
plugins: [
|
|
'advlist autolink pagebreak lists paste'
|
|
],
|
|
toolbar: 'bold italic underline | bullist numlist pagebreak | removeformat',
|
|
image_advtab: false,
|
|
content_css: [
|
|
'//fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i',
|
|
]
|
|
});
|
|
|
|
$( ".datepicker" ).flatpickr({
|
|
time_24hr: true,
|
|
enableTime: true,
|
|
dateFormat: "Y-m-d H:i:ss",
|
|
});
|
|
|
|
|
|
});
|