Skip to content

Commit

Permalink
Make the subtitle of the model bold in the About text
Browse files Browse the repository at this point in the history
[#100837530]
  • Loading branch information
pjanik committed Aug 26, 2015
1 parent e5514e1 commit 4799100
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lab/common/controllers/about-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ define(function (require) {
this.set("title", this._i18n.t("about_dialog.title", {interactive_title: interactive.title}));

if (interactive.subtitle) {
$aboutContent.append(markdownToHTML(interactive.subtitle));
// Bold the subtitle using markdown (**).
$aboutContent.append(markdownToHTML("**" + interactive.subtitle + "**"));
}
$aboutContent.append(markdownToHTML(interactive.about));

Expand Down

0 comments on commit 4799100

Please sign in to comment.