24 lines
No EOL
570 B
PHP
24 lines
No EOL
570 B
PHP
<?php
|
|
// Script owEditor/pell
|
|
|
|
if (isset($_['input']))
|
|
{
|
|
$currentContent=stripslashes($_['input']);
|
|
}
|
|
else
|
|
{
|
|
$currentContent=@$page['page']['contenu']['#text'];
|
|
}
|
|
|
|
?>
|
|
<script type="text/javascript">
|
|
var editor = window.pell.init({
|
|
element: document.getElementById('editor'),
|
|
defaultParagraphSeparator: 'p',
|
|
|
|
onChange: function (html) {
|
|
document.getElementById('html-output').textContent = html
|
|
},
|
|
})
|
|
document.getElementById("pell-id").innerHTML = `<?php echo $currentContent; ?>`;
|
|
</script>
|