]> git.immae.eu Git - perso/Immae/Projets/packagist/ludivine-ckeditor-component.git/blobdiff - sources/plugins/sourcearea/plugin.js
Update to 4.7.3
[perso/Immae/Projets/packagist/ludivine-ckeditor-component.git] / sources / plugins / sourcearea / plugin.js
index 837bc305a642623713bc1aed850db068e8985997..09745be6cc943fa8e6e65183a307dd323b8f09c9 100644 (file)
@@ -11,7 +11,7 @@
 ( function() {\r
        CKEDITOR.plugins.add( 'sourcearea', {\r
                // jscs:disable maximumLineLength\r
-               lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%\r
+               lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,es-mx,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%\r
                // jscs:enable maximumLineLength\r
                icons: 'source,source-rtl', // %REMOVE_LINE_CORE%\r
                hidpi: true, // %REMOVE_LINE_CORE%\r
@@ -38,7 +38,7 @@
                                        CKEDITOR.tools.cssVendorPrefix( 'tab-size', editor.config.sourceAreaTabSize || 4 ) ) );\r
 \r
                                // Make sure that source code is always displayed LTR,\r
-                               // regardless of editor language (#10105).\r
+                               // regardless of editor language (http://dev.ckeditor.com/ticket/10105).\r
                                textarea.setAttribute( 'dir', 'ltr' );\r
 \r
                                textarea.addClass( 'cke_source' ).addClass( 'cke_reset' ).addClass( 'cke_enable_context_menu' );\r
@@ -53,7 +53,7 @@
                                // Having to make <textarea> fixed sized to conquer the following bugs:\r
                                // 1. The textarea height/width='100%' doesn't constraint to the 'td' in IE6/7.\r
                                // 2. Unexpected vertical-scrolling behavior happens whenever focus is moving out of editor\r
-                               // if text content within it has overflowed. (#4762)\r
+                               // if text content within it has overflowed. (http://dev.ckeditor.com/ticket/4762)\r
                                if ( CKEDITOR.env.ie ) {\r
                                        editable.attachListener( editor, 'resize', onResize, editable );\r
                                        editable.attachListener( CKEDITOR.document.getWindow(), 'resize', onResize, editable );\r
@@ -83,7 +83,7 @@
 \r
                        function onResize() {\r
                                // We have to do something with focus on IE9, because if sourcearea had focus\r
-                               // before being resized, the caret ends somewhere in the editor UI (#11839).\r
+                               // before being resized, the caret ends somewhere in the editor UI (http://dev.ckeditor.com/ticket/11839).\r
                                var wasActive = needsFocusHack && this.equals( CKEDITOR.document.getActive() );\r
 \r
                                // Holder rectange size is stretched by textarea,\r