Closed kadoban closed 7 years ago
There was a silent error in actually setting the font style to bold, here's a patch:
diff --git a/dojoClient/js/Kgs.js b/dojoClient/js/Kgs.js index ad65d6a..e13e309 100644 --- a/dojoClient/js/Kgs.js +++ b/dojoClient/js/Kgs.js @@ -287,7 +287,7 @@ define([ if (registry.byId("mainTabs").selectedChildWidget != registry.byId("chan-" + id)) { // Chat in a hidden pane! Make the title bold. domStyle.set(registry.byId("mainTabs_tablist_chan-" + id).domNode, - "font-weight", "bold"); + "fontWeight", "bold"); } };
Looks good to me!
No more dojoclient! Closing this out.
There was a silent error in actually setting the font style to bold, here's a patch: