1
0
mirror of https://github.com/strongdm/comply synced 2024-07-02 23:14:22 +00:00

move all calls to show to bottom block

This commit is contained in:
Justin McCarthy 2018-05-17 22:46:17 -07:00
parent 7aa267dbb6
commit e97f0684ac
No known key found for this signature in database
GPG Key ID: 900437410E142A48

View File

@ -15,20 +15,11 @@ html lang=en
document.querySelectorAll('.cron').forEach(function(el) { document.querySelectorAll('.cron').forEach(function(el) {
el.innerHTML = prettyCron.toString((""+el.innerHTML).trim(),true) // 6-field expressions el.innerHTML = prettyCron.toString((""+el.innerHTML).trim(),true) // 6-field expressions
}) })
if (window.location.hash != "") {
var hashComponents = window.location.hash.split('#')
if (hashComponents.length>1) {
var destination = hashComponents[1]
if (["overview","narratives","policies","procedures","standards"].indexOf(destination) >= 0) {
show(destination)
}
}
}
}) })
function show(name) { function show(name) {
if(history.replaceState) { if (history.replaceState) {
history.replaceState(null, null, '#'+name); history.replaceState(null, null, '#'+name)
} }
var items = document.getElementsByClassName('top-nav') var items = document.getElementsByClassName('top-nav')
@ -233,7 +224,14 @@ html lang=en
.content.has-text-centered .content.has-text-centered
p {{.Project.OrganizationName}} Confidential 2018 p {{.Project.OrganizationName}} Confidential 2018
= javascript = javascript
// commented for development
if (window.location.hash=="") { if (window.location.hash=="") {
show('overview') show('overview')
} else {
var hashComponents = window.location.hash.split('#')
if (hashComponents.length>1) {
var destination = hashComponents[1]
if (["overview","narratives","policies","procedures","standards"].indexOf(destination) >= 0) {
show(destination)
}
}
} }