[nodebb-plugin-unresponsive] Unresponsive design
-
The way that NodeBB's responsive design works has irritated some of our users, so we came up with a plugin to allow users to effectively disable it.
The biggest complaint was getting the small / mobile composer view when the browser's window went below ~1000px.
-
The way that NodeBB's responsive design works has irritated some of our users, so we came up with a plugin to allow users to effectively disable it.
The biggest complaint was getting the small / mobile composer view when the browser's window went below ~1000px.
-
@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
.@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... -
@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... -
@NedFodder Not sure what's going on. Looks like a translator failure? Here I have Chrome / FF. Though maybe there's a better way than innerText?
@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+. -
Neat! I'm kind of disappointed that a plugin had to be made to downgrade a part of NodeBB, but that's the beauty of open-source
@julian said in [nodebb-plugin-unresponsive] Unresponsive design:
to downgrade a part of NodeBB
Well, that's in the eye of the beholder.
@NedFodder said in [nodebb-plugin-unresponsive] Unresponsive design:
See my second post, innerText should be fine on FF v45+.
Yeah, but it's apparently nonstandard. I just didn't know any better. Seems like
textContent
is what you're supposed to use. -
@julian said in [nodebb-plugin-unresponsive] Unresponsive design:
to downgrade a part of NodeBB
Well, that's in the eye of the beholder.
@NedFodder said in [nodebb-plugin-unresponsive] Unresponsive design:
See my second post, innerText should be fine on FF v45+.
Yeah, but it's apparently nonstandard. I just didn't know any better. Seems like
textContent
is what you're supposed to use.