[18:37:39] FlorianSW: what would be the best way to hide edit buttons, depending on a config variable(when js disabled) ? [18:38:37] I'm thinking of conditionally adding a stylesheet with a rule to hide edit buttons, when $wgAllowNonJsEditing is false, but that seems to be an overkill :P [18:39:13] codezee: If I understand you correctly, you could use JS to remove a hidden class, or you add a css rule for client-nojs, that hides the icons (and add the class only when the config is true) [18:41:22] FlorianSW: also, if I need to add a style module only to pages with "action=edit" should I do that in MobileFrontend.hooks.php ? [18:42:06] yep, you can use onBeforeDisplayPage for that :) [18:43:27] thanks :)