prawnsalad / KiwiIRC

This is **DEPRECATED**! Please go to https://github.com/kiwiirc/kiwiirc
https://kiwiirc.com
GNU Affero General Public License v3.0
891 stars 277 forks source link

Firefox Problems #909

Open driftypuddle opened 7 years ago

driftypuddle commented 7 years ago

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 commented 7 years ago

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 commented 7 years ago

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