X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fludivine-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fplugins%2Felementspath%2Fplugin.js;fp=sources%2Fplugins%2Felementspath%2Fplugin.js;h=f66d7adb07e6fafa98d13ee21d744465dd629734;hp=07ba5c23ee70e29cb944fe18196864152426249b;hb=1794320dcfdfcd19572fb1676294f9853a6bbc20;hpb=7183f6a6a21ad9124e70c997e0168459f377a9f2 diff --git a/sources/plugins/elementspath/plugin.js b/sources/plugins/elementspath/plugin.js index 07ba5c2..f66d7ad 100644 --- a/sources/plugins/elementspath/plugin.js +++ b/sources/plugins/elementspath/plugin.js @@ -17,7 +17,7 @@ var idBase = editor._.elementsPath.idBase; var element = CKEDITOR.document.getById( idBase + '0' ); - // Make the first button focus accessible for IE. (#3417) + // Make the first button focus accessible for IE. (http://dev.ckeditor.com/ticket/3417) // Adobe AIR instead need while of delay. element && element.focus( CKEDITOR.env.ie || CKEDITOR.env.air ); } @@ -55,7 +55,7 @@ CKEDITOR.plugins.add( 'elementspath', { // jscs:disable maximumLineLength - 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,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% + 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,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% // jscs:enable maximumLineLength init: function( editor ) { editor._.elementsPath = { @@ -104,13 +104,13 @@ selection.selectElement( element ); } - // Explicitly fire selectionChange when clicking on an element path button. (#13548) + // Explicitly fire selectionChange when clicking on an element path button. (http://dev.ckeditor.com/ticket/13548) if ( CKEDITOR.env.ie ) { editor.fire( 'selectionChange', { selection: selection, path: new CKEDITOR.dom.elementPath( element ) } ); } // It is important to focus() *after* the above selection - // manipulation, otherwise Firefox will have troubles. #10119 + // manipulation, otherwise Firefox will have troubles. http://dev.ckeditor.com/ticket/10119 editor.focus(); } @@ -160,7 +160,7 @@ filters = elementsPath.filters, isContentEditable = true, - // Use elementPath to consider children of editable only (#11124). + // Use elementPath to consider children of editable only (http://dev.ckeditor.com/ticket/11124). elementsChain = editor.elementPath().elements, name;