1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-20 01:40:41 +00:00

Sort includes in Ui/Chat.js

This commit is contained in:
Maximilian Mader 2020-11-01 14:42:39 +01:00 committed by Tim Düsterhus
parent 885cfe6f31
commit db515f1f1b
Signed by: TimWolla
GPG Key ID: 8FF75566094168AF

View File

@ -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