Closed GoogleCodeExporter closed 8 years ago
If you look at the code in jquery.wysiwyg.js on line 279, you'll see that for
increaseFontSize and decreaseFontSize, the 'visible' property is set to 'true
&& !(
$.browser.msie )', which will only evaluate to true if the browser is not MSIE.
I'm pretty sure this has to do with lack of increase/decreaseFontSize support
in IE's
execCommand implementation. This is a link to the possible command identifiers
in IE:
http://msdn.microsoft.com/en-us/library/ms533049%28VS.85%29.aspx
It would be possible to write a special handler font sizes, if you pass it to
the
'fn' argument. (And, of course, remove the && !( $.browser.msie ) portion of
the
visibility property) Since things are working in Mozilla, you would probably
want to
write a separate menu item; call it something like increaseFontSizeIE.
Original comment by bullbran...@gmail.com
on 31 Jul 2009 at 8:58
Original comment by akzhan.a...@gmail.com
on 27 Jun 2010 at 10:34
Original issue reported on code.google.com by
HugB...@gmail.com
on 5 May 2009 at 10:22