Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
tam888888 committed Dec 16, 2023
1 parent 0997995 commit 7bb4a54
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions name/webapp2/public/indicator.html
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,17 @@ <h5 class="modal-title" id="settingsModalLabel">Settings</h5>
localStorage.clear();
location.reload();
})

$('#settingsModal').on('show.bs.modal', function (e) {
// Vô hiệu hóa chức năng đóng modal khi nhấn vào phần bên ngoài
$(this).data('bs.modal')._config.backdrop = 'static';
});

// Lắng nghe sự kiện hide modal
$('#settingsModal').on('hide.bs.modal', function (e) {
// Bật lại chức năng đóng modal khi nhấn vào phần bên ngoài khi modal đã ẩn đi
$(this).data('bs.modal')._config.backdrop = true;
});
var col = 6;
$('#settingsButton').on('click', function () {
$('#macd').empty();
Expand Down

0 comments on commit 7bb4a54

Please sign in to comment.