* Fixed feature #6579: Small correction to FE htmlArea RTE
* Remove exception catching in htmlArea RTE when setting styleWithCSS
+ * Fixed bug 6640: htmlArea RTE tool bar is not updated in IE when up or down arrow is pressed
2007-11-01 Stanislas Rolland <stanislas.rolland@fructifor.ca>
* Fixed feature #6579: Small correction to FE htmlArea RTE
* Remove exception catching in htmlArea RTE when setting styleWithCSS
+ * Fixed bug 6640: htmlArea RTE tool bar is not updated in IE when up or down arrow is pressed
2007-11-01 Stanislas Rolland <stanislas.rolland@fructifor.ca>
}
break;
case 37: // LEFT arrow key
+ case 38: // UP arrow key
case 39: // RIGHT arrow key
+ case 40: // DOWN arrow key
if (HTMLArea.is_ie) {
+ if (editor._timerToolbar) window.clearTimeout(editor._timerToolbar);
editor._timerToolbar = window.setTimeout("HTMLArea.updateToolbar(" + editor._editorNumber + ");", 10);
break;
}