Generally you either reopen it’s controller which can define a class or if it truly is in the hbs, you can overwrite the hbs file by placing it is the same folder structure in your plugin. Just realize doing that means you have to maintain and copy changes that occur in that file in core.
Hmm maybe its the .js.es6 file extension? To be honest, I have no idea how to go about this.
I’m hoping of a way to distinguishing between mods and admins in the admin portal by adding a class somewhere in the DOM (preferably on the admin-wrapper or body). So that I can trigger a “display: none” on some of the buttons in the admin panel.
Actually, I remember now why I was trying to do this in a plugin and not in javascript. |
In JS its hard to tell when the user is in the admin page. And in the past I have tried to add classes before and I couldn’t find a persistent event so that my JS code would run on every page. api.onpagechange only works when the url changes (not the view).
Thank you for the help!
I guess I’ll overwrite the admin wrapper with my class name in it and see how that goes