Revision f94425b8
Von Bernd Bleßmann vor fast 3 Jahren hinzugefügt
js/kivi.js | ||
---|---|---|
347 | 347 |
var editor = CKEDITOR.inline($e.get(0), config); |
348 | 348 |
$e.data('ckeditorInstance', editor); |
349 | 349 |
|
350 |
if ($e.hasClass('texteditor-space-for-toolbar')) |
|
351 |
editor.on('instanceReady', function() { |
|
352 |
var editor = $e.ckeditorGet(); |
|
353 |
var editable = editor.editable(); |
|
354 |
$(editable.$).css("margin-top", "30px"); |
|
355 |
}); |
|
356 |
|
|
357 |
|
|
350 | 358 |
if ($e.hasClass('texteditor-autofocus')) |
351 | 359 |
editor.on('instanceReady', function() { ns.focus_ckeditor($e); }); |
352 | 360 |
}; |
Auch abrufbar als: Unified diff
kivi.js: CKEditor macht platz für Toolbox, …
wenn das Platzhalter-Element die Klasse 'texteditor-space-for-toolbar'
gestezt hat.