feat: proper window priority
This commit is contained in:
parent
d380bb1e6c
commit
b8f39a7477
1 changed files with 15 additions and 0 deletions
15
sq2.js
15
sq2.js
|
@ -36,6 +36,21 @@ $(document).ready(function(){
|
|||
handle: '#boost-container-header',
|
||||
});
|
||||
|
||||
$("#overall-window").mousedown(function() {
|
||||
$(".window-container").css("z-index", 10);
|
||||
$(this).css("z-index", 11);
|
||||
});
|
||||
|
||||
$("#search-container").mousedown(function() {
|
||||
$(".window-container").css("z-index", 10);
|
||||
$(this).css("z-index", 11);
|
||||
});
|
||||
|
||||
$("#boost-container").mousedown(function() {
|
||||
$(".window-container").css("z-index", 10);
|
||||
$(this).css("z-index", 11);
|
||||
});
|
||||
|
||||
// update builds
|
||||
jQuery(document).on("keypress", '.item-name', function(event){
|
||||
if (event.keyCode == 13) {
|
||||
|
|
Loading…
Reference in a new issue