Fixed some stuff
parent
2ef764d34b
commit
1086937b9b
|
@ -5,6 +5,8 @@
|
|||
- Enabled log grouping
|
||||
- Improved permission popup performance
|
||||
- Showing a better client version on client info
|
||||
- When you press enter while a channel is selected let you enter this channel
|
||||
- Fixed connect file select overflow
|
||||
|
||||
* **1.12.18**
|
||||
- Added the possibility to navigate via arrow keys within the channel tree
|
||||
|
|
|
@ -132,9 +132,9 @@
|
|||
<hr>
|
||||
<div class="identity_config_TEAMSPEAK identity_config">
|
||||
Please enter your exported TS3 Identity string bellow or select your exported Identity<br>
|
||||
<div style="width: 100%; display: flex; flex-direction: row">
|
||||
<input placeholder="Identity string" style="width: 70%; margin: 5px;" class="identity_string">
|
||||
<div style="width: 30%; margin: 5px"><input class="identity_file" type="file"></div>
|
||||
<div style="width: 100%; display: flex; justify-content: stretch; flex-direction: row">
|
||||
<input placeholder="Identity string" style="min-width: 60%; flex-shrink: 1; flex-grow: 2; margin: 5px;" class="identity_string">
|
||||
<div style="max-width: 200px; flex-grow: 1; flex-shrink: 4; margin: 5px"><input style="display: flex; width: 100%;" class="identity_file" type="file"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="identity_config_TEAFORO identity_config">
|
||||
|
|
|
@ -191,7 +191,7 @@ namespace Modals {
|
|||
return tag;
|
||||
},
|
||||
|
||||
width: 600,
|
||||
width: '70%',
|
||||
//closeable: false
|
||||
});
|
||||
connectModal.open();
|
||||
|
|
|
@ -703,6 +703,10 @@ class ChannelTree {
|
|||
this.select_next_channel(channel, false);
|
||||
} else if(this.currently_selected instanceof ServerEntry)
|
||||
this.onSelect(this.channel_first, true);
|
||||
} else if(event.keyCode == JQuery.Key.Enter) {
|
||||
if(this.currently_selected instanceof ChannelEntry) {
|
||||
this.currently_selected.joinChannel();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue