Merge pull request #4230 from frissdiegurke/patch-4

Prevent breaking eventLoopLagThreshold value
v1.18.x
Julian Lam 9 years ago
commit 567b01e0bc

@ -85,7 +85,7 @@
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="eventLoopLagThreshold">Event Loop Lag Threshold (in milliseconds)</label> <label for="eventLoopLagThreshold">Event Loop Lag Threshold (in milliseconds)</label>
<input class="form-control" id="eventLoopLagThreshold" type="number" data-field="eventLoopLagThreshold" placeholder="Default: 70" step="10" value="70" /> <input class="form-control" id="eventLoopLagThreshold" type="number" data-field="eventLoopLagThreshold" placeholder="Default: 70" step="10" min="10" value="70" />
<p class="help-block"> <p class="help-block">
Lowering this value decreases wait times for page loads, but will also show the Lowering this value decreases wait times for page loads, but will also show the
"excessive load" message to more users. (Reload required) "excessive load" message to more users. (Reload required)
@ -103,4 +103,4 @@
</div> </div>
</div> </div>
<!-- IMPORT admin/settings/footer.tpl --> <!-- IMPORT admin/settings/footer.tpl -->

Loading…
Cancel
Save