Add hint for users with no groups or contacts

If you have no contacts or groups, display a hint about phone numbers.

// FREEBIE
This commit is contained in:
lilia 2015-11-27 17:34:02 -08:00
parent e9949152bb
commit 891a5e54ad
6 changed files with 96 additions and 6 deletions

View file

@ -6,7 +6,12 @@
window.Whisper = window.Whisper || {};
Whisper.HintView = Whisper.View.extend({
className: 'conversation placeholder',
templateName: 'hint',
initialize: function(options) {
this.content = options.content;
},
render_attributes: function() {
return { content: this.content };
}
});
})();