diff --git a/xCAT-UI/js/manual/manual.js b/xCAT-UI/js/manual/manual.js new file mode 100644 index 000000000..22a0710a8 --- /dev/null +++ b/xCAT-UI/js/manual/manual.js @@ -0,0 +1,15 @@ +function loadManualPage(){ + // Create monitor tab + var tab = new Tab(); + tab.init(); + $('#content').append(tab.object()); + //add the help content + var helpForm = $('
'); + helpForm.append('' + + ''); + tab.add('monitorTab', 'Guide', helpForm, false); +} \ No newline at end of file diff --git a/xCAT-UI/js/ui.js b/xCAT-UI/js/ui.js index 086a3a8ab..7cac4b0d7 100644 --- a/xCAT-UI/js/ui.js +++ b/xCAT-UI/js/ui.js @@ -511,7 +511,12 @@ function initPage() { includeJs("js/monitor/gangliamon.js"); headers.eq(3).css('background-color', '#A9D0F5'); loadMonitorPage(); - } else { + } else if (page == 'manual.php') { + includeJs("js/manual/manual.js"); + headers.eq(4).css('background-color', '#A9D0F5'); + loadManualPage(); + } + else { includeJs("js/jquery/jquery.topzindex.min.js"); includeJs("js/nodes/nodeset.js"); includeJs("js/nodes/rnetboot.js"); diff --git a/xCAT-UI/manual.php b/xCAT-UI/manual.php new file mode 100644 index 000000000..8529d430a --- /dev/null +++ b/xCAT-UI/manual.php @@ -0,0 +1,17 @@ + \ No newline at end of file