summaryrefslogtreecommitdiffstats
path: root/common/coverpage
diff options
context:
space:
mode:
Diffstat (limited to 'common/coverpage')
-rw-r--r--common/coverpage/coverpage.js2
-rw-r--r--common/coverpage/static/rtems/js/catalogue.js8
2 files changed, 5 insertions, 5 deletions
diff --git a/common/coverpage/coverpage.js b/common/coverpage/coverpage.js
index 4655c29..7a24c94 100644
--- a/common/coverpage/coverpage.js
+++ b/common/coverpage/coverpage.js
@@ -9,5 +9,5 @@
*/
function coverPageCatalogue() {
xml = '@CATALOGUE';
- paintCatalogue($.parseXML(xml));
+ paintCatalogue($.parseXML(xml), true);
}
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');