Reply -> Quote
This commit is contained in:
parent
2def6afe45
commit
b4ce79cac0
4 changed files with 7 additions and 5 deletions
|
@ -161,7 +161,11 @@ window.Signal.Debug = require('./js/modules/debug');
|
||||||
window.Signal.HTML = require('./ts/html');
|
window.Signal.HTML = require('./ts/html');
|
||||||
window.Signal.Logs = require('./js/modules/logs');
|
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 = {};
|
||||||
window.Signal.Migrations.deleteAttachmentData =
|
window.Signal.Migrations.deleteAttachmentData =
|
||||||
|
|
|
@ -13,8 +13,7 @@ export { BackboneWrapper } from '../components/utility/BackboneWrapper';
|
||||||
|
|
||||||
// Here we can make things inside Webpack available to Backbone views like preload.js.
|
// Here we can make things inside Webpack available to Backbone views like preload.js.
|
||||||
|
|
||||||
import { Message } from '../components/conversation/Message';
|
import { Quote } from '../components/conversation/Quote';
|
||||||
import { Reply } from '../components/conversation/Reply';
|
|
||||||
|
|
||||||
|
|
||||||
// TypeScript wants two things when you import:
|
// TypeScript wants two things when you import:
|
||||||
|
@ -78,8 +77,7 @@ parent.React = React;
|
||||||
parent.ReactDOM = ReactDOM;
|
parent.ReactDOM = ReactDOM;
|
||||||
|
|
||||||
parent.Signal.Components = {
|
parent.Signal.Components = {
|
||||||
Message,
|
Quote,
|
||||||
Reply,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
parent.ConversationController._initialFetchComplete = true;
|
parent.ConversationController._initialFetchComplete = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue