Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Firefox Problems #909

Open
driftypuddle opened this issue Nov 30, 2016 · 2 comments
Open

Firefox Problems #909

driftypuddle opened this issue Nov 30, 2016 · 2 comments

Comments

@driftypuddle
Copy link

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
Copy link
Author

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
Copy link
Author

driftypuddle commented Dec 21, 2016

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@driftypuddle and others