X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/c59e85c3a7538b1279e25022a6cf431ca1dee700..b857a9fcba5c0f6f96cfc7d85308aab6860ca089:/js/ckeditor/samples/old/enterkey/enterkey.html diff --git a/js/ckeditor/samples/old/enterkey/enterkey.html b/js/ckeditor/samples/old/enterkey/enterkey.html new file mode 100644 index 000000000..79afee3e2 --- /dev/null +++ b/js/ckeditor/samples/old/enterkey/enterkey.html @@ -0,0 +1,106 @@ + + + +
+ +
+ This sample shows how to configure the Enter and Shift+Enter keys
+ to perform actions specified in the
+ enterMode
+ and shiftEnterMode
+ parameters, respectively.
+ You can choose from the following options:
+
ENTER_P – new <p> paragraphs are created;ENTER_BR – lines are broken with <br> elements;ENTER_DIV – new <div> blocks are created.
+ The sample code below shows how to configure CKEditor to create a <div> block when Enter key is pressed.
+
+CKEDITOR.replace( 'textarea_id', {
+ enterMode: CKEDITOR.ENTER_DIV
+});
+
+ Note that textarea_id in the code above is the id attribute of
+ the <textarea> element to be replaced.
+