Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'wip-MDL-35823-master' of git://github.com/phalacee/moodle
  • Loading branch information
danpoltawski committed Feb 4, 2013
2 parents ef23b6f + 4df8223 commit 3428c00
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion help.php
Expand Up @@ -67,7 +67,13 @@
$options->newlines = false;
$options->overflowdiv = !$ajax;

echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 1, 'helpheading');
if ($ajax) {
// When using AJAX, the header should be H2 as it is in the same DOM as the calling page.
echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 2, 'helpheading');
} else {
// When not using AJAX, the header should be H1 as it is in it's own window.
echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 1, 'helpheading');
}
// Should be simple wiki only MDL-21695
echo format_text(get_string($identifier.'_help', $component), FORMAT_MARKDOWN, $options);

Expand Down
2 changes: 1 addition & 1 deletion theme/magazine/style/core.css
Expand Up @@ -494,7 +494,7 @@ div.yui3-widget-bd {
background: none;
}

div.yui3-widget-bd h1.helpheading {
div.yui3-widget-bd h2.helpheading {
font-size: 16px !important;
font-weight: 800;
margin-top: 5px;
Expand Down
3 changes: 2 additions & 1 deletion theme/mymobile/style/core.css
Expand Up @@ -33,7 +33,8 @@ ul {
color:inherit;
font-size:inherit;
}
h1.helpheading {
h1.helpheading,
h2.helpheading {
font-size: 1.6em;
}
/*extra line abve labels and remove padding right for no icon */
Expand Down

0 comments on commit 3428c00

Please sign in to comment.