Merge branch 'master' into dev10

This commit is contained in:
fredtempez 2019-11-13 20:28:08 +01:00
commit b8f680e228

View File

@ -1,15 +1,20 @@
/** /**
* Initialisation de TinyMCE * Initialisation de TinyMCE
*/ */
tinymce.init({ tinymce.init({
// Classe où appliquer l'éditeur // Classe où appliquer l'éditeur
selector: ".editorWysiwyg", selector: ".editorWysiwyg",
// Aperçu dans le pied de page // Aperçu dans le pied de page
setup:function(ed) { setup:function(ed) {
ed.on('change', function(e) { ed.on('change', function(e) {
$("#footerText").html(tinyMCE.get('themeFooterText').getContent()); if (ed.id === 'themeFooterText') {
}); $("#footerText").html(tinyMCE.get('themeFooterText').getContent());
}, }
});
},
// Langue // Langue
language: "fr_FR", language: "fr_FR",
// Plugins // Plugins
@ -56,7 +61,7 @@ tinymce.init({
baseUrl + "site/data/theme.css", baseUrl + "site/data/theme.css",
baseUrl + "site/data/custom.css" baseUrl + "site/data/custom.css"
], ],
// Classe à ajouter à la balise body dans l'iframe // Classe à ajouter à la balise body dans l'iframe
body_class: "editorWysiwyg", body_class: "editorWysiwyg",
// Cache les menus // Cache les menus
menubar: false, menubar: false,
@ -209,7 +214,7 @@ tinymce.PluginManager.add('stickytoolbar', function(editor, url) {
}); });
toolbars.css({ toolbars.css({
top:0, top:0,
position: 'relative', position: 'relative',
width: 'auto', width: 'auto',
borderBottom: 'none' borderBottom: 'none'
@ -237,7 +242,7 @@ tinymce.PluginManager.add('stickytoolbar', function(editor, url) {
var hiddenHeight = -($(container).outerHeight() - toolbarHeight - footerHeight); var hiddenHeight = -($(container).outerHeight() - toolbarHeight - footerHeight);
if (editorTop < hiddenHeight) { if (editorTop < hiddenHeight) {
return true; return true;
} }