unused variables / missing semi-colon

This commit is contained in:
Thijs Wenker 2019-04-03 00:22:21 +02:00
parent 13fb3148a5
commit aef4f28194

View file

@ -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;