Built motion from commit 54a160d.|0.0.140
[motion.git] / public / assets / plugins / ckeditor / samples / js / sample.js
index 80f1c2b..21cf97b 100644 (file)
@@ -1,53 +1,53 @@
-\feff/**\r
- * Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.\r
- * For licensing, see LICENSE.md or http://ckeditor.com/license\r
- */\r
-\r
-/* exported initSample */\r
-\r
-if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 )\r
-       CKEDITOR.tools.enableHtml5Elements( document );\r
-\r
-// The trick to keep the editor in the sample quite small\r
-// unless user specified own height.\r
-CKEDITOR.config.height = 150;\r
-CKEDITOR.config.width = 'auto';\r
-\r
-var initSample = ( function() {\r
-       var wysiwygareaAvailable = isWysiwygareaAvailable(),\r
-               isBBCodeBuiltIn = !!CKEDITOR.plugins.get( 'bbcode' );\r
-\r
-       return function() {\r
-               var editorElement = CKEDITOR.document.getById( 'editor' );\r
-\r
-               // :(((\r
-               if ( isBBCodeBuiltIn ) {\r
-                       editorElement.setHtml(\r
-                               'Hello world!\n\n' +\r
-                               'I\'m an instance of [url=http://ckeditor.com]CKEditor[/url].'\r
-                       );\r
-               }\r
-\r
-               // Depending on the wysiwygare plugin availability initialize classic or inline editor.\r
-               if ( wysiwygareaAvailable ) {\r
-                       CKEDITOR.replace( 'editor' );\r
-               } else {\r
-                       editorElement.setAttribute( 'contenteditable', 'true' );\r
-                       CKEDITOR.inline( 'editor' );\r
-\r
-                       // TODO we can consider displaying some info box that\r
-                       // without wysiwygarea the classic editor may not work.\r
-               }\r
-       };\r
-\r
-       function isWysiwygareaAvailable() {\r
-               // If in development mode, then the wysiwygarea must be available.\r
-               // Split REV into two strings so builder does not replace it :D.\r
-               if ( CKEDITOR.revision == ( '%RE' + 'V%' ) ) {\r
-                       return true;\r
-               }\r
-\r
-               return !!CKEDITOR.plugins.get( 'wysiwygarea' );\r
-       }\r
-} )();\r
-\r
+\feff/**
+ * Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md or http://ckeditor.com/license
+ */
+
+/* exported initSample */
+
+if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 )
+       CKEDITOR.tools.enableHtml5Elements( document );
+
+// The trick to keep the editor in the sample quite small
+// unless user specified own height.
+CKEDITOR.config.height = 150;
+CKEDITOR.config.width = 'auto';
+
+var initSample = ( function() {
+       var wysiwygareaAvailable = isWysiwygareaAvailable(),
+               isBBCodeBuiltIn = !!CKEDITOR.plugins.get( 'bbcode' );
+
+       return function() {
+               var editorElement = CKEDITOR.document.getById( 'editor' );
+
+               // :(((
+               if ( isBBCodeBuiltIn ) {
+                       editorElement.setHtml(
+                               'Hello world!\n\n' +
+                               'I\'m an instance of [url=http://ckeditor.com]CKEditor[/url].'
+                       );
+               }
+
+               // Depending on the wysiwygare plugin availability initialize classic or inline editor.
+               if ( wysiwygareaAvailable ) {
+                       CKEDITOR.replace( 'editor' );
+               } else {
+                       editorElement.setAttribute( 'contenteditable', 'true' );
+                       CKEDITOR.inline( 'editor' );
+
+                       // TODO we can consider displaying some info box that
+                       // without wysiwygarea the classic editor may not work.
+               }
+       };
+
+       function isWysiwygareaAvailable() {
+               // If in development mode, then the wysiwygarea must be available.
+               // Split REV into two strings so builder does not replace it :D.
+               if ( CKEDITOR.revision == ( '%RE' + 'V%' ) ) {
+                       return true;
+               }
+
+               return !!CKEDITOR.plugins.get( 'wysiwygarea' );
+       }
+} )();
+