Increase idle threshold to 5 minutes

ipad-testing
Noah 2023-07-23 15:49:04 -07:00
parent e111899404
commit d80f67dd1e
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ const app = Vue.createApp({
// Idle detection variables // Idle detection variables
idleTimeout: null, idleTimeout: null,
idleThreshold: 60, // number of seconds you must be idle idleThreshold: 300, // number of seconds you must be idle
// WebSocket connection. // WebSocket connection.
ws: { ws: {

View File

@ -479,7 +479,7 @@
:class="{'is-active': c.ID == channel}"> :class="{'is-active': c.ID == channel}">
[[c.Name]] [[c.Name]]
<span v-if="hasUnread(c.ID)" <span v-if="hasUnread(c.ID)"
class="tag"> class="tag is-success">
[[hasUnread(c.ID)]] [[hasUnread(c.ID)]]
</span> </span>
</a> </a>