Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ui 3.0 issues fixes #7

Merged
merged 15 commits into from
Sep 8, 2020
2 changes: 1 addition & 1 deletion css/bootstrap.min.css

Large diffs are not rendered by default.

3,034 changes: 3,034 additions & 0 deletions css/style-main.scss

Large diffs are not rendered by default.

2,125 changes: 1,931 additions & 194 deletions css/style.css

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions js/modernizr-1.5.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions js/tabs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
function newTabs () {
var links = document.getElementsByClassName('lab-list-row-div')
for ( i = 0 ; i < links.length ; i ++ ) {
anchors = links[i].getElementsByTagName('a')
for ( j = 0 ; j < anchors.length ; j ++ ) {
anchors[j].setAttribute('target', '_blank')
}
}
var footer = document.getElementsByClassName('border-right-green-dotted')
for ( i = 0 ; i < footer.length ; i ++ ) {
footerLinks = footer[i].getElementsByTagName('a')
for ( j = 0 ; j < footerLinks.length ; j ++ ) {
footerLinks[j].setAttribute('target', '_blank')
}
}
}

window.onload = function(){ newTabs() }
Loading