From db515f1f1b7c11a6f8d83a1179622e047edd2edc Mon Sep 17 00:00:00 2001 From: Maximilian Mader Date: Sun, 1 Nov 2020 14:42:39 +0100 Subject: [PATCH] Sort includes in Ui/Chat.js --- files_wcf/js/Bastelstu.be/Chat/Ui/Chat.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files_wcf/js/Bastelstu.be/Chat/Ui/Chat.js b/files_wcf/js/Bastelstu.be/Chat/Ui/Chat.js index f37d86b..e02760c 100644 --- a/files_wcf/js/Bastelstu.be/Chat/Ui/Chat.js +++ b/files_wcf/js/Bastelstu.be/Chat/Ui/Chat.js @@ -19,8 +19,8 @@ define([ '../Ui' ], function (Ui) { , 'UiConnectionWarning' , 'UiInput' , 'UiInputAutocompleter' - , 'UiMessageStream' , 'UiMessageActionDelete' + , 'UiMessageStream' , 'UiMobile' , 'UiNotification' , 'UiReadMarker' @@ -30,40 +30,40 @@ define([ '../Ui' ], function (Ui) { , 'UiUserList' ] class Chat extends Ui { - constructor(attachmentUpload, autoAway, connectionWarning, input, autocompleter, messageStream, messageActionDelete, mobile, notification, readMarker, settings, topic, userActionDropdownHandler, userList) { + constructor(attachmentUpload, autoAway, connectionWarning, input, autocompleter, messageActionDelete, messageStream, mobile, notification, readMarker, settings, topic, userActionDropdownHandler, userList) { super() this.actionDropdownHandler = userActionDropdownHandler + this.attachmentUpload = attachmentUpload this.autoAway = autoAway this.autocompleter = autocompleter this.connectionWarning = connectionWarning this.input = input - this.messageStream = messageStream this.messageActionDelete = messageActionDelete + this.messageStream = messageStream this.mobile = mobile this.notification = notification this.readMarker = readMarker this.settings = settings this.topic = topic this.userList = userList - this.attachmentUpload = attachmentUpload } bootstrap() { this.actionDropdownHandler.bootstrap() + this.attachmentUpload.bootstrap() this.autoAway.bootstrap() this.autocompleter.bootstrap() this.connectionWarning.bootstrap() this.input.bootstrap() - this.messageStream.bootstrap() this.messageActionDelete.bootstrap() + this.messageStream.bootstrap() this.mobile.bootstrap() this.notification.bootstrap() this.readMarker.bootstrap() this.settings.bootstrap() this.topic.bootstrap() this.userList.bootstrap() - this.attachmentUpload.bootstrap() } } Chat.DEPENDENCIES = DEPENDENCIES