]> git.immae.eu Git - perso/Immae/Projets/packagist/ludivine-ckeditor-component.git/blobdiff - sources/plugins/menu/plugin.js
Update to 4.7.3
[perso/Immae/Projets/packagist/ludivine-ckeditor-component.git] / sources / plugins / menu / plugin.js
index 1312a62614ef5ae5e08484ce125a2f6187fab089..3596e527a764fcc22fcaebf3f78e882750a80079 100644 (file)
@@ -102,13 +102,13 @@ CKEDITOR.plugins.add( 'menu', {
                menuItemSource += ' onkeypress="return false;"';\r
 \r
        // With Firefox, we need to force the button to redraw, otherwise it\r
-       // will remain in the focus state. Also we some extra help to prevent dragging (#10373).\r
+       // will remain in the focus state. Also we some extra help to prevent dragging (http://dev.ckeditor.com/ticket/10373).\r
        if ( CKEDITOR.env.gecko ) {\r
                menuItemSource += ( ' onblur="this.style.cssText = this.style.cssText;"' +\r
                        ' ondragstart="return false;"' );\r
        }\r
 \r
-       // #188\r
+       // http://dev.ckeditor.com/ticket/188\r
        menuItemSource += ' onmouseover="CKEDITOR.tools.callFunction({hoverFn},{index});"' +\r
                        ' onmouseout="CKEDITOR.tools.callFunction({moveOutFn},{index});" ' +\r
                        ( CKEDITOR.env.ie ? 'onclick="return false;" onmouseup' : 'onclick' ) +\r
@@ -258,7 +258,7 @@ CKEDITOR.plugins.add( 'menu', {
 \r
                                // Show the submenu.\r
                                // This timeout is needed to give time for the sub-menu get\r
-                               // focus when JAWS is running. (#9844)\r
+                               // focus when JAWS is running. (http://dev.ckeditor.com/ticket/9844)\r
                                setTimeout( function() {\r
                                        menu.show( element, 2 );\r
                                }, 0 );\r
@@ -274,7 +274,7 @@ CKEDITOR.plugins.add( 'menu', {
                        add: function( item ) {\r
                                // Later we may sort the items, but Array#sort is not stable in\r
                                // some browsers, here we're forcing the original sequence with\r
-                               // 'order' attribute if it hasn't been assigned. (#3868)\r
+                               // 'order' attribute if it hasn't been assigned. (http://dev.ckeditor.com/ticket/3868)\r
                                if ( !item.order )\r
                                        item.order = this.items.length;\r
 \r
@@ -342,7 +342,7 @@ CKEDITOR.plugins.add( 'menu', {
                                        keys[ CKEDITOR.SHIFT + 9 ] = 'prev'; // SHIFT + TAB\r
                                        keys[ ( editor.lang.dir == 'rtl' ? 37 : 39 ) ] = CKEDITOR.env.ie ? 'mouseup' : 'click'; // ARROW-RIGHT/ARROW-LEFT(rtl)\r
                                        keys[ 32 ] = CKEDITOR.env.ie ? 'mouseup' : 'click'; // SPACE\r
-                                       CKEDITOR.env.ie && ( keys[ 13 ] = 'mouseup' ); // Manage ENTER, since onclick is blocked in IE (#8041).\r
+                                       CKEDITOR.env.ie && ( keys[ 13 ] = 'mouseup' ); // Manage ENTER, since onclick is blocked in IE (http://dev.ckeditor.com/ticket/8041).\r
 \r
                                        element = this._.element = block.element;\r
 \r