KiwiIRC icon indicating copy to clipboard operation
KiwiIRC copied to clipboard

Firefox Problems

Open driftypuddle opened this issue 8 years ago • 2 comments

Hello I have two problems with firefox in Kiwiirc

  1. when resize nicklist it does not unclick so when moving mouse it just resize the nicklist until you have refresh.

  2. Text plugin can't click bold underline italic

Can any one help with this or this a bug

Many Thanks David

driftypuddle avatar Nov 30 '16 19:11 driftypuddle

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(); });

driftypuddle avatar Dec 21 '16 21:12 driftypuddle

Firefox nicklist resize is a css problem that sorted this post is now closed Thank you

driftypuddle avatar Dec 21 '16 21:12 driftypuddle