X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fplugins%2Fa11yhelp%2Fdialogs%2Fa11yhelp.js;h=4b7c34c006b92897a2a26b365361aeffc93f39ba;hp=3348f931371f9495b476f20d11a095e82c7d8873;hb=039a051ccf3901311661022a30afd60fc38130c9;hpb=c9fdde67e6384bd5a66adc2b3bba5c4ce9db56c7 diff --git a/_source/plugins/a11yhelp/dialogs/a11yhelp.js b/_source/plugins/a11yhelp/dialogs/a11yhelp.js index 3348f93..4b7c34c 100644 --- a/_source/plugins/a11yhelp/dialogs/a11yhelp.js +++ b/_source/plugins/a11yhelp/dialogs/a11yhelp.js @@ -6,7 +6,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license CKEDITOR.dialog.add( 'a11yHelp', function( editor ) { var lang = editor.lang.accessibilityHelp, - id = CKEDITOR.tools.getNextNumber(); + id = CKEDITOR.tools.getNextId(); // CharCode <-> KeyChar. var keyMap = @@ -125,8 +125,8 @@ CKEDITOR.dialog.add( 'a11yHelp', function( editor ) // Create the help list directly from lang file entries. function buildHelpContents() { - var pageTpl = '
%1
' + - '' + lang.contents + ' ', + var pageTpl = '
%1
' + + '' + lang.contents + ' ', sectionTpl = '

%1

%2
', itemTpl = '
%1
%2
';