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' , 'UiConnectionWarning'
, 'UiInput' , 'UiInput'
, 'UiInputAutocompleter' , 'UiInputAutocompleter'
, 'UiMessageStream'
, 'UiMessageActionDelete' , 'UiMessageActionDelete'
, 'UiMessageStream'
, 'UiMobile' , 'UiMobile'
, 'UiNotification' , 'UiNotification'
, 'UiReadMarker' , 'UiReadMarker'
@ -30,40 +30,40 @@ define([ '../Ui' ], function (Ui) {
, 'UiUserList' , 'UiUserList'
] ]
class Chat extends Ui { 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() super()
this.actionDropdownHandler = userActionDropdownHandler this.actionDropdownHandler = userActionDropdownHandler
this.attachmentUpload = attachmentUpload
this.autoAway = autoAway this.autoAway = autoAway
this.autocompleter = autocompleter this.autocompleter = autocompleter
this.connectionWarning = connectionWarning this.connectionWarning = connectionWarning
this.input = input this.input = input
this.messageStream = messageStream
this.messageActionDelete = messageActionDelete this.messageActionDelete = messageActionDelete
this.messageStream = messageStream
this.mobile = mobile this.mobile = mobile
this.notification = notification this.notification = notification
this.readMarker = readMarker this.readMarker = readMarker
this.settings = settings this.settings = settings
this.topic = topic this.topic = topic
this.userList = userList this.userList = userList
this.attachmentUpload = attachmentUpload
} }
bootstrap() { bootstrap() {
this.actionDropdownHandler.bootstrap() this.actionDropdownHandler.bootstrap()
this.attachmentUpload.bootstrap()
this.autoAway.bootstrap() this.autoAway.bootstrap()
this.autocompleter.bootstrap() this.autocompleter.bootstrap()
this.connectionWarning.bootstrap() this.connectionWarning.bootstrap()
this.input.bootstrap() this.input.bootstrap()
this.messageStream.bootstrap()
this.messageActionDelete.bootstrap() this.messageActionDelete.bootstrap()
this.messageStream.bootstrap()
this.mobile.bootstrap() this.mobile.bootstrap()
this.notification.bootstrap() this.notification.bootstrap()
this.readMarker.bootstrap() this.readMarker.bootstrap()
this.settings.bootstrap() this.settings.bootstrap()
this.topic.bootstrap() this.topic.bootstrap()
this.userList.bootstrap() this.userList.bootstrap()
this.attachmentUpload.bootstrap()
} }
} }
Chat.DEPENDENCIES = DEPENDENCIES Chat.DEPENDENCIES = DEPENDENCIES