Potential fix/support for HTTPS
Removed the hard-coded http in the API url and instead calling window.location.protocol
This commit is contained in:
parent
b99ade74c7
commit
5cda6ece05
@ -1,4 +1,4 @@
|
|||||||
let apiUri = `http://${window.location.host.split(':')[0]}:6531`
|
let apiUri = `${window.location.protocol}//${window.location.host.split(':')[0]}:6531`
|
||||||
|
|
||||||
if(getCookie("apiUri") != ""){
|
if(getCookie("apiUri") != ""){
|
||||||
apiUri = getCookie("apiUri");
|
apiUri = getCookie("apiUri");
|
||||||
|
@ -940,8 +940,7 @@ footer-tag-popup::before{
|
|||||||
.section-item > .jobDetails > .jobProgressBar {
|
.section-item > .jobDetails > .jobProgressBar {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
border-radius: 5px;
|
border-radius: 7px;
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-item > .jobDetails > .jobProgressSpan {
|
.section-item > .jobDetails > .jobProgressSpan {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user