mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
unused variables / missing semi-colon
This commit is contained in:
parent
13fb3148a5
commit
aef4f28194
1 changed files with 1 additions and 4 deletions
|
@ -1528,7 +1528,6 @@ const GROUPS_PER_TYPE = {
|
|||
};
|
||||
|
||||
const EDITOR_TIMEOUT_DURATION = 1500;
|
||||
const IMAGE_DEBOUNCE_TIMEOUT = 250;
|
||||
const DEBOUNCE_TIMEOUT = 125;
|
||||
|
||||
const COLOR_MIN = 0;
|
||||
|
@ -2069,7 +2068,7 @@ function createNumberProperty(property, elProperty) {
|
|||
type="number"
|
||||
${propertyData.placeholder ? 'placeholder="' + propertyData.placeholder + '"' : ''}
|
||||
${propertyData.readOnly ? 'readonly' : ''}></input>
|
||||
`)
|
||||
`);
|
||||
|
||||
if (propertyData.min !== undefined) {
|
||||
elInput.setAttribute("min", propertyData.min);
|
||||
|
@ -3312,8 +3311,6 @@ function materialTargetPropertyUpdate(propertyValue) {
|
|||
function loaded() {
|
||||
openEventBridge(function() {
|
||||
let elPropertiesList = document.getElementById("properties-list");
|
||||
|
||||
let templatePropertyRow = document.getElementById('property-row');
|
||||
|
||||
GROUPS.forEach(function(group) {
|
||||
let elGroup;
|
||||
|
|
Loading…
Reference in a new issue