Organize globals

This commit is contained in:
Daniel Gasienica 2018-05-07 12:50:11 -04:00
parent a86056630f
commit a0ddab669b

View file

@ -1,10 +1,12 @@
/* global _: false */
/* global Backbone: false */
/* global Whisper: false */
/* global textsecure: false */
/* global ConversationController: false */
/* global i18n: false */
/* global getAccountManager: false */
/* global i18n: false */
/* global Signal: false */
/* global textsecure: false */
/* global Whisper: false */
/* eslint-disable more/no-then */
@ -14,8 +16,8 @@
window.Whisper = window.Whisper || {};
const { Message: TypedMessage } = window.Signal.Types;
const { deleteAttachmentData } = window.Signal.Migrations;
const { Message: TypedMessage } = Signal.Types;
const { deleteAttachmentData } = Signal.Migrations;
window.Whisper.Message = Backbone.Model.extend({
database: Whisper.Database,