Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<textarea id='1' class="ckeditor" name="editor1></textarea>
<head>
<script type="text/javascript">
CKEDITOR.replace( '1',
{
extraPlugins : 'autogrow',
autoGrow_maxHeight : 800,
// Remove the resize plugin, as it doesn't make sense to use it in conjunction with the AutoGrow plugin.
removePlugins : 'resize'
});
</script>
</head>
<textarea id='area1' class="ckeditor" name="editor1></textarea>
<script type="text/javascript" src="../ckeditor/ckeditor.js"></script>
CKEDITOR.replace( 'textarea_id',
{
extraPlugins : 'autogrow',
autoGrow_maxHeight : 800,
// Remove the resize plugin, as it doesn't make sense to use it in conjunction with the AutoGrow plugin.
removePlugins : 'resize'
});