Closed (duplicate)
Project:
Wysiwyg
Version:
6.x-1.1
Component:
Editor - TinyMCE
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
6 Apr 2009 at 04:29 UTC
Updated:
6 May 2009 at 22:13 UTC
Accesskeys in tinymce, such as Alt + Shift + Q to focus the toolbar area don't seem to be working - The code to add the relevant html seems to be getting called, but trying to use the accesskeys has no effect. I have tested this in firefox 3, IE7 and Chrome 1.0.154.53, using tinymce 3.2.2, drupal 6.10, wysiwyg 6.x-1.1.
Cheers,
Rane
Comments
Comment #1
sunMost probably a bug in TinyMCE itself.
Comment #2
ranebow commentedIt works in the accessibility example they have here: http://tinymce.moxiecode.com/examples/example_17.php.
Guess I will have to dig into the code...
Comment #3
ranebow commentedIt seems to happen if this code is called:
// Make toolbar buttons wrappable (required for IE).
ed.onPostRender.add(function (ed) {
var $toolbar = $('
');
$('#' + ed.editorContainer + ' table.mceToolbar > tbody > tr > td').each(function () {
$('
').addClass(this.className).append($(this).children()).appendTo($toolbar);
});
$('#' + ed.editorContainer + ' table.mceLayout td.mceToolbar').append($toolbar);
$('#' + ed.editorContainer + ' table.mceToolbar').remove();
});
in tinymce-3.js
obviously ie won't work without this...
Comment #4
ranebow commentedI sort of have a fix, though it's a bit of a hack - I added the following
in tinymce-3.js, and removed the line that creates the accesskey link in editor_template...
Comment #5
sunThis is caused by the current fake-aligning of editor buttons.
Marking as duplicate of #277954: Allow to sort editor buttons. You can follow up on that issue instead to track its status. If any information from this issue is missing in the other issue, please make sure you provide it over there.
However, thanks for taking the time to report this issue.