Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop' into EM-sql-injection-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cduhn17 committed Jul 10, 2023
2 parents 0a9d411 + 1ac5df8 commit 4afb3d5
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 2,767 deletions.
8 changes: 0 additions & 8 deletions src/pe_reports/home/templates/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@
T.style.display = displayValue;
}

function loading() {
$("#loading").show();
$("#content").hide();
}

$(document).ready(function () {
console.log("Im ready ");

Expand All @@ -44,9 +39,6 @@
setTimeout(function () {
$("#messageDiv").fadeOut("fast");
}, 5000);
$(window).load(function () {
$("#loading").hide();
});
});
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,20 +169,12 @@
if (C.style.display == "" && B.style.display == "") showBulletinDiv();
}

function loading() {
$("#loading").show();
$("#content").hide();
}

$(document).ready(function () {
console.log("Im ready ");

setTimeout(function () {
$("#messageDiv").fadeOut("fast");
}, 5000);
$(window).load(function () {
$("#loading").hide();
});
});
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@
T.style.display = displayValue;
}

function loading() {
$("#loading").show();
$("#content").hide();
}

$(document).ready(function () {
console.log("Im ready ");

Expand All @@ -68,9 +63,6 @@
setTimeout(function () {
$("#messageDiv").fadeOut("fast");
}, 5000);
$(window).load(function () {
$("#loading").hide();
});
});
</script>

Expand Down
25 changes: 0 additions & 25 deletions src/pe_reports/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,6 @@ img {
transition: opacity 300ms ease-in;
}

#loader {
position: absolute;
left: 50%;

top: 50%;
z-index: 1;
width: 120px;
height: 120px;
margin: -76px 0 0 -76px;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
Expand Down Expand Up @@ -79,15 +63,6 @@ div#myDiv {
text-align: center;
}

div#loading {
width: 50%;
height: 350px;
/*justify-content: center;*/
align-items: center;
background: url("../SVG-Loaders/svg-loaders/bars.svg") no-repeat;
cursor: wait;
}

homeBG {
background-color: white;
}

0 comments on commit 4afb3d5

Please sign in to comment.