WIP: floating edge UI
This commit is contained in:
@@ -17,7 +17,7 @@ if (window.IS_DEV) {
|
||||
const mapPlaceholder = document.querySelector('.map-placeholder'),
|
||||
distanceOutput = document.getElementById('status'),
|
||||
proneToggle = document.getElementById('toggle-prone-counter'),
|
||||
contentVisToggleEl = document.querySelector('#content input[type="checkbox"].visible'),
|
||||
contentVisToggleEl = document.querySelector('#edge-inputs input[type="checkbox"].visible'),
|
||||
// fileName = localStorage.getItem('map') || 'scenario-side_show',
|
||||
fileName = localStorage.getItem('map') || 'radial',
|
||||
map = scenarios[fileName]?.hashed || `assets/images/${fileName}.svg`,
|
||||
@@ -92,7 +92,7 @@ function clearMoveEndedIndicators(records) {
|
||||
|
||||
function distance(count = '-') {
|
||||
distanceOutput.querySelector('#hex-count').textContent = count;
|
||||
distanceOutput.style.display = count === '-' ? 'none' : 'block';
|
||||
distanceOutput.style.visibility = count === '-' ? 'hidden' : 'visible';
|
||||
}
|
||||
|
||||
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random#getting_a_random_integer_between_two_values_inclusive
|
||||
|
||||
Reference in New Issue
Block a user