151:0178573216e3
Anton Shestakov <av6@dwimlabs.net>, Thu, 14 Apr 2016 02:05:24 +0800
index: remove offline contacts only when they change to being offline Since new contacts are currently added while they still have the default presence of 'unavailable', add event sees them as offline and throws them away immediately, before their presence could change to something else.

next change 154:79704a09a39d
previous change 126:e9c9a09ff29f

coffee/tram.coffee

Permissions: -rw-r--r--

Other formats: Feeds:
window.Tram =
info:
client: 'Tram IM'
version: '0.1'
url: 'https://bitbucket.org/av6/tram-im'
NS:
WEBRTC: 'tram-im:webrtc'
config:
host: location.host
domain: location.hostname
iceServers: [{
urls: 'stun:stun.services.mozilla.com'
}, {
urls: 'stun:stun.l.google.com:19302'
}]
colors:
show:
chat: '#a959c5'
online: '#8cc14c'
away: '#faa732'
xa: '#da314b'
offline: '#777'
default: '#00a8e6'
avatar: [
'#f75782',
'#d27b2b',
'#a5902b',
'#759d2b',
'#2da46b',
'#2fa196',
'#319db4',
'#4292f4',
'#c16af4',
'#f545cd'
]
class window.Tram.ClientState extends Backbone.Model
defaults:
show: 'offline'