| 144 | this.router = new Router() |
| 145 | this.userIsIdle = false |
| 146 | const onIdleChanged = to => { return () => { return Backbone.Mediator.publish('application:idle-changed', { idle: (this.userIsIdle = to) }) } } |
| 147 | // eslint-disable-next-line no-undef |
| 148 | this.idleTracker = new Idle({ |
| 149 | onAway: onIdleChanged(true), |