Show a hint on startup if the inbox is empty

Fixes #403

// FREEBIE
This commit is contained in:
lilia 2015-11-20 16:58:52 -08:00
parent 61439a886f
commit d4e0c11ebc
5 changed files with 90 additions and 0 deletions

12
js/views/hint_view.js Normal file
View file

@ -0,0 +1,12 @@
/*
* vim: ts=4:sw=4:expandtab
*/
(function () {
'use strict';
window.Whisper = window.Whisper || {};
Whisper.HintView = Whisper.View.extend({
className: 'firstRun hint',
templateName: 'hint',
});
})();