Reply -> Quote

This commit is contained in:
Scott Nonnenberg 2018-04-09 16:38:40 -07:00
parent 2def6afe45
commit b4ce79cac0
No known key found for this signature in database
GPG key ID: 5F82280C35134661
4 changed files with 7 additions and 5 deletions

View file

@ -161,7 +161,11 @@ window.Signal.Debug = require('./js/modules/debug');
window.Signal.HTML = require('./ts/html');
window.Signal.Logs = require('./js/modules/logs');
window.Signal.Components = {};
const Quote = require('./ts/components/conversation/Quote');
window.Signal.Components = {
Quote,
};
window.Signal.Migrations = {};
window.Signal.Migrations.deleteAttachmentData =

View file

@ -13,8 +13,7 @@ export { BackboneWrapper } from '../components/utility/BackboneWrapper';
// Here we can make things inside Webpack available to Backbone views like preload.js.
import { Message } from '../components/conversation/Message';
import { Reply } from '../components/conversation/Reply';
import { Quote } from '../components/conversation/Quote';
// TypeScript wants two things when you import:
@ -78,8 +77,7 @@ parent.React = React;
parent.ReactDOM = ReactDOM;
parent.Signal.Components = {
Message,
Reply,
Quote,
};
parent.ConversationController._initialFetchComplete = true;