mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-11 02:10:11 +01:00
* Add <br> when Bored Waiting Button Appears * Added <br> below progress bar as well * Removed <br> Two <br> tags were added which were taking lot of space. I dynamically added space when needed.
This commit is contained in:
parent
3d8686211d
commit
765289c89e
@ -32,6 +32,7 @@ $(document).ready(function () {
|
|||||||
const showGameBtn = document.getElementById("show-game-btn");
|
const showGameBtn = document.getElementById("show-game-btn");
|
||||||
if (boredWaiting === "enabled" && showGameBtn) {
|
if (boredWaiting === "enabled" && showGameBtn) {
|
||||||
showGameBtn.style.display = "block";
|
showGameBtn.style.display = "block";
|
||||||
|
showGameBtn.parentNode.insertBefore(document.createElement('br'), showGameBtn.nextSibling);
|
||||||
}
|
}
|
||||||
}, 5000);
|
}, 5000);
|
||||||
|
|
||||||
@ -176,7 +177,8 @@ async function submitMultiPdfForm(url, files) {
|
|||||||
const zipThreshold = parseInt(localStorage.getItem("zipThreshold"), 10) || 4;
|
const zipThreshold = parseInt(localStorage.getItem("zipThreshold"), 10) || 4;
|
||||||
const zipFiles = files.length > zipThreshold;
|
const zipFiles = files.length > zipThreshold;
|
||||||
let jszip = null;
|
let jszip = null;
|
||||||
// Show the progress bar
|
// Add Space below Progress Bar before Showing
|
||||||
|
$('.progressBarContainer').after($('<br>'));
|
||||||
$(".progressBarContainer").show();
|
$(".progressBarContainer").show();
|
||||||
// Initialize the progress bar
|
// Initialize the progress bar
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@
|
|||||||
const downloadCompleteText = /*[[#{downloadComplete}]]*/ 'Download Complete';
|
const downloadCompleteText = /*[[#{downloadComplete}]]*/ 'Download Complete';
|
||||||
window.downloadCompleteText = downloadCompleteText;
|
window.downloadCompleteText = downloadCompleteText;
|
||||||
// Create the 'show-game-btn' button
|
// Create the 'show-game-btn' button
|
||||||
var gameButton = $('<button type="button" class="btn btn-primary" id="show-game-btn" style="display:none;">' + boredWaitingText + '</button><br><br>');
|
var gameButton = $('<button type="button" class="btn btn-primary" id="show-game-btn" style="display:none;">' + boredWaitingText + '</button>');
|
||||||
|
|
||||||
// Insert the 'show-game-btn' just above the submit button
|
// Insert the 'show-game-btn' just above the submit button
|
||||||
submitButton.before(gameButton);
|
submitButton.before(gameButton);
|
||||||
|
Loading…
Reference in New Issue
Block a user