KiwiIRC
KiwiIRC copied to clipboard
Firefox Problems
Hello I have two problems with firefox in Kiwiirc
-
when resize nicklist it does not unclick so when moving mouse it just resize the nicklist until you have refresh.
-
Text plugin can't click bold underline italic
Can any one help with this or this a bug
Many Thanks David
ok to fix the bold underline and italic problem in Firefox
change
// Changing styles... $list.on('click', '.style-format-bold', function() { event.stopPropagation(); styles.bold = !styles.bold; updateStyles(); }); $list.on('click', '.style-format-italic', function() { event.stopPropagation(); styles.italic = !styles.italic; updateStyles(); }); $list.on('click', '.style-format-underline', function() { event.stopPropagation(); styles.underline = !styles.underline; updateStyles(); });
to
// Changing styles... $list.on('click', '.style-format-bold', function(event) { event.stopPropagation(); styles.bold = !styles.bold; updateStyles(); }); $list.on('click', '.style-format-italic', function(event) { event.stopPropagation(); styles.italic = !styles.italic; updateStyles(); }); $list.on('click', '.style-format-underline', function(event) { event.stopPropagation(); styles.underline = !styles.underline; updateStyles(); });
Firefox nicklist resize is a css problem that sorted this post is now closed Thank you