/www/src/StatusCircle.js
enyo.kind({
name: "StatusCircle",
kind: "Control",
classes: "status-circle",
setStatus: function(s) {
switch(s) {
case 'online':
this.applyStyle('background-color', '#00DF00');
break;
case 'away':
this.applyStyle('background-color', 'red');
break;
case 'offline':
default:
this.applyStyle('background-color', null);
break;
}
}
});