UNPKG

glances-app

Version:

A heads-up dashboard for displaying thing-statuses

17 lines (14 loc) 271 B
var currentValue = 0 module.exports = { state: { title: 'Example', value: currentValue }, schedule($, options) { $.every('2 sec', () => { return $.emitChange(Object.assign({}, this.tile, { value: currentValue += 1 })) }) } }