2014-11-09 05:17:26 -05:00
|
|
|
/*global $, Whisper, Backbone, textsecure, extension*/
|
2014-10-01 18:29:37 -07:00
|
|
|
/* vim: ts=4:sw=4:expandtab:
|
2014-05-14 14:58:12 -04:00
|
|
|
*
|
2014-05-04 02:34:13 -04:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-11-09 05:17:26 -05:00
|
|
|
(function () {
|
2014-11-16 15:30:40 -08:00
|
|
|
'use strict';
|
2014-05-04 02:34:13 -04:00
|
|
|
|
2014-11-16 15:30:40 -08:00
|
|
|
window.Whisper = window.Whisper || {};
|
2014-08-24 21:03:20 -07:00
|
|
|
|
2014-11-09 05:17:26 -05:00
|
|
|
if (textsecure.storage.getUnencrypted("number_id") === undefined) {
|
|
|
|
window.location = '/options.html';
|
|
|
|
} else {
|
2014-11-19 23:08:22 -08:00
|
|
|
new Whisper.InboxView({el: document});
|
2014-11-09 05:17:26 -05:00
|
|
|
textsecure.storage.putUnencrypted("unreadCount", 0);
|
|
|
|
extension.navigator.setBadgeText("");
|
2014-10-01 18:29:37 -07:00
|
|
|
}
|
2014-11-09 05:17:26 -05:00
|
|
|
}());
|