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

Commit

Permalink
dist build v2.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BlakeDraper committed Feb 9, 2023
1 parent b005bcf commit 40d1683
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 3 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Changed

- added link to NWHC diagnostic case submission guidelines and updated text in the service request dialog
- changed handling of the role name display - eliminated query of role table in favor of role_string from server auth response

### Deprecated

### Removed
Expand All @@ -22,6 +19,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Security

## [2.18.1](https://github.com/USGS-WiM/whispers/releases/tag/v2.18.1)

### Changed

- added link to NWHC diagnostic case submission guidelines and updated text in the service request dialog
- changed handling of the role name display - eliminated query of role table in favor of role_string from server auth response

## [2.18.0](https://github.com/USGS-WiM/whispers/releases/tag/v2.18.0)

### Added
Expand Down
87 changes: 87 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8">
<title>WHISPers</title>
<base href="/">

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-61219868-40"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-61219868-40');
</script>

<link rel="stylesheet" href="styles.08635d38172d2aa991f6.css">
</head>

<body class="whispers-root mat-app-background">
<app-root>
<div id="initialLoading">
<div id="wAnimated">
<img src="./assets/w-logo.png" />
</div>
<span>Loading...</span>
</div>
<style>
#initialLoading {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
height: 100vh;
width: 100vw;
background-color: #03040C;
position: fixed;
top: 0;
left: 0;
color: white;
font-weight: 500;
font-size: 18px;
font-family: 'Lato', sans-serif;
font-weight: 700;
letter-spacing: 0.3px;
}

#initialLoading img {
display: block;
margin: 0 auto;
width: 80px;
height: auto;
margin-bottom: 8px;
animation: yourAnimation 1.5s infinite 0s ease-in-out;
}

#initialLoading span {
display: block;
margin-top: 12px;
}

@keyframes yourAnimation {
0% {
transform: scale(0.8);
}

50% {
transform: scale(1.1);
}

100% {
transform: scale(0.8);
}
}
</style>
</app-root>
<script type="text/javascript" src="runtime.ec2944dd8b20ec099bf3.js"></script>
<script type="text/javascript" src="polyfills.4fe429747ab56eeddc25.js"></script>
<script type="text/javascript" src="scripts.dcad4cbbb2a922a53836.js"></script>
<script type="text/javascript" src="main.cc4aa7f4dd1f21153d72.js"></script>
</body>

</html>
1 change: 1 addition & 0 deletions dist/main.cc4aa7f4dd1f21153d72.js

Large diffs are not rendered by default.

0 comments on commit 40d1683

Please sign in to comment.