diff --git a/node/src/documents/elements/header.html b/node/src/documents/elements/header.html
index d2d16b257..8972425b4 100755
--- a/node/src/documents/elements/header.html
+++ b/node/src/documents/elements/header.html
@@ -56,7 +56,7 @@ type : 'UI Element'
A header can be formatted to emphasize an icon
diff --git a/node/src/files/javascript/semantic.js b/node/src/files/javascript/semantic.js
index bb2544364..c5c179253 100755
--- a/node/src/files/javascript/semantic.js
+++ b/node/src/files/javascript/semantic.js
@@ -184,21 +184,24 @@ semantic.ready = function() {
var
$button = $(this),
$body = $('body'),
- $example = $('.example'),
- $headers = $('.example .ui.header:first-of-type').add('.example p:first-of-type')
+ $example = $('.example')
;
$body.toggleClass('overview');
$button.toggleClass('active');
if($body.hasClass('overview')) {
$developer.addClass('disabled').popup('destroy');
$designer.addClass('disabled').popup('destroy');
- $example.children().not($headers).hide();
+ $example.each(function() {
+ $(this).children().not('.ui.header:eq(0), .example p:eq(0), .annotation').hide();
+ });
$example.filter('.another').hide();
}
else {
$developer.removeClass('disabled').popup();
$designer.removeClass('disabled').popup();
- $example.children().not($headers).show();
+ $example.each(function() {
+ $(this).children().not('.ui.header:eq(0), .example p:eq(0), .annotation').show();
+ });
$example.filter('.another').show();
}
},
diff --git a/node/src/files/release/semantic.zip.REMOVED.git-id b/node/src/files/release/semantic.zip.REMOVED.git-id
index 6eda660eb..d97413cb2 100644
--- a/node/src/files/release/semantic.zip.REMOVED.git-id
+++ b/node/src/files/release/semantic.zip.REMOVED.git-id
@@ -1 +1 @@
-f2e2560dd49059a5e1122a8a4d677ad9700a7233
\ No newline at end of file
+5d30041b17dbc753ba683788263efd0c2e698740
\ No newline at end of file