summaryrefslogtreecommitdiffstats
path: root/common/coverpage/static/rtems/js/catalogue.js
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-01-12 13:18:43 +1100
committerChris Johns <chrisj@rtems.org>2017-01-12 13:18:43 +1100
commit321d20a02dfc799045ad49ddbd184c3a335f595d (patch)
treefdf85b627f921e5fc8c00befc868bc032ab90c01 /common/coverpage/static/rtems/js/catalogue.js
parentcoverpage: Rename the static images directory to match bootstrap. (diff)
downloadrtems-docs-321d20a02dfc799045ad49ddbd184c3a335f595d.tar.bz2
coverpage: Make showing the table conditional.
Diffstat (limited to '')
-rw-r--r--common/coverpage/static/rtems/js/catalogue.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/coverpage/static/rtems/js/catalogue.js b/common/coverpage/static/rtems/js/catalogue.js
index c3becf6..9a6a221 100644
--- a/common/coverpage/static/rtems/js/catalogue.js
+++ b/common/coverpage/static/rtems/js/catalogue.js
@@ -50,7 +50,7 @@ function catalogueFooter() {
' </dev/>';
}
-function paintCatalogue(xml) {
+function paintCatalogue(xml, show) {
var el_cat_title = $('#rtems-catalogue-title');
var el_cat = $('#rtems-catalogue');
/*
@@ -62,7 +62,6 @@ function paintCatalogue(xml) {
var date = $(docs).attr('date');
var title = $(docs).find('catalogue');
var id = title.text().replace(/\.| |\(|\)|\[|\]/g, '_');
- console.log(id);
var table = catalogueHeader(id, title.text(), date);
$(docs).find('doc').each(function() {
var name = $(this).find('name').text();
@@ -99,10 +98,11 @@ function paintCatalogue(xml) {
$('#' + id + '1').on('hidden.bs.collapse', function () {
$("#" + id + " i.indicator").removeClass("glyphicon-chevron-down").addClass("glyphicon-chevron-up");
});
- $('#' + id + '1').collapse('show');
+ if (show == true)
+ $('#' + id + '1').collapse('show');
}
-function loadCatalogue(path) {
+function loadCatalogue(path, show) {
var f = $.get(path, function(xml) {
paintCatalogue(xml);
}, 'xml');