@boomzilla @baris Just wanted to say thanks again for this. We went live with it yesterday, and it's really improved my experience with the forum.

Best posts made by NedFodder
-
RE: Ignoring individual threads
-
RE: Ignoring individual threads
@azeus It was added after the latest stable version (v1.0.3). It looks like it will be officially released in version 1.1.0. If you don't want to wait, you can upgrade to the latest version on the
master
branch. See instructions and warnings here. -
RE: Ignoring individual threads
@baris Seems to work really well. I did notice one slightly odd thing. When changing to Not Watching, this message is still the same as before:
If the user is going from Ignoring to Not Watching, this message doesn't really make sense. I would suggest something like
You will see this topic in the unread topics list, but you will not receive notifications when somebody posts to this topic.
Latest posts made by NedFodder
-
RE: User Card overflows with long name
We put this in our CSS:
.persona-usercard .usercard-name { text-overflow: ellipsis; white-space: nowrap; width: 270px; display: inline-block; overflow: hidden; }
-
Composer buttons and selected text broken on Edge, IE11
When you highlight text and click on one of the formatting buttons (bold, italic, etc.), strange things happen (but only on Edge and IE11):
Different things happen depending on how many words are selected. I've reproduced the behavior here on community.nodebb.org. I'd report this on github, but I don't know which repo is responsible...
-
RE: Ignoring individual threads
@azeus It was added after the latest stable version (v1.0.3). It looks like it will be officially released in version 1.1.0. If you don't want to wait, you can upgrade to the latest version on the
master
branch. See instructions and warnings here. -
RE: Ignoring individual threads
@boomzilla @baris Just wanted to say thanks again for this. We went live with it yesterday, and it's really improved my experience with the forum.
-
RE: Ignoring individual threads
@baris Seems to work really well. I did notice one slightly odd thing. When changing to Not Watching, this message is still the same as before:
If the user is going from Ignoring to Not Watching, this message doesn't really make sense. I would suggest something like
You will see this topic in the unread topics list, but you will not receive notifications when somebody posts to this topic.
-
RE: [nodebb-plugin-unresponsive] Unresponsive design
@boomzilla said in [nodebb-plugin-unresponsive] Unresponsive design:
Looks like a translator failure
Definitely not, I added a
console.log
increateMenuItem
and the translated text is there. See my second post,innerText
should be fine on FF v45+. -
RE: [nodebb-plugin-unresponsive] Unresponsive design
@NedFodder Whoops, my FF (v44) is out of date.
innerText
was supposed to be added back in March (v45). I'll update to v46 and test again... -
RE: [nodebb-plugin-unresponsive] Unresponsive design
@boomzilla The menu items don't work in FF.
Ubuntu x64 14.04, Chrome on left, FF on right:
SO says to use
span.textContent
instead ofspan.innerText
. -
RE: Composer Button Tooltips
@baris Just tried out 3.0.27, works great, thanks! There's still one difference: with
filter:composer.formatting
the text is run through the translator automagically, but withcomposer.addButton()
I have to translate it first. Not a big deal, just pointing that out...