1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

better variable naming

This commit is contained in:
Martin McKeaveney 2020-03-07 23:57:19 +00:00
parent 7c55007c4e
commit 05385d611e

View file

@ -7,9 +7,9 @@
export let propertyName export let propertyName
export let onStyleChanged = () => {} export let onStyleChanged = () => {}
let _values = values.map(v => v) let selectedLayoutValues = values.map(v => v)
$: onStyleChanged(_values) $: onStyleChanged(selectedLayoutValues)
const PROPERTY_OPTIONS = { const PROPERTY_OPTIONS = {
Direction: { Direction: {
@ -37,10 +37,10 @@
{#each meta as { placeholder }, i} {#each meta as { placeholder }, i}
{#each propertyChoices as [displayName, [cssPropValue, icon]]} {#each propertyChoices as [displayName, [cssPropValue, icon]]}
<button <button
class:selected={cssPropValue === _values[i]} class:selected={cssPropValue === selectedLayoutValues[i]}
on:click={() => { on:click={() => {
const newPropertyValue = cssPropValue === _values[i] ? '' : cssPropValue const newPropertyValue = cssPropValue === selectedLayoutValues[i] ? '' : cssPropValue
_values[i] = newPropertyValue selectedLayoutValues[i] = newPropertyValue
}}> }}>
<i class={icon} /> <i class={icon} />
</button> </button>