Prevent accidental DoS of users if server sends a rapid feed of data to the console.

Configurable speed in environment file.
This commit is contained in:
Dane Everitt 2016-10-23 21:31:29 -04:00
parent 55c9f0f2f2
commit 045864aa96
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 39 additions and 2 deletions

View file

@ -271,3 +271,17 @@ li.btn.btn-default.pill:active,li.btn.btn-default.pill:focus,li.btn.btn-default.
.fuelux .wizard .steps-container {
background-color: #eee;
}
#consoleThrottled {
z-index: 999;
top: 0px;
opacity: 0.6;
left: 0;
position: absolute;
margin: 0 15px;
border-radius: 4px 4px 0 0;
}
#consoleThrottled:hover {
opacity: 1;
}