diff --git a/app/controller/components.js b/app/controller/components.js index c6c7781..e967891 100644 --- a/app/controller/components.js +++ b/app/controller/components.js @@ -10,10 +10,10 @@ exports.presetList = function(vm) { return [ m('a.panel-graphic-preset-add.button', { onclick: vm.addPreset.bind(vm), - }, 'Save to preset list'), + }, 'Save Preset'), m('a.panel-graphic-display.success.button', { onclick: vm.displayCurrent.bind(vm), - }, 'Display'), + }, 'Display Live'), m('label', 'Presets'), m('ul.panel-graphic-preset', vm.presets.map((item, index) => m('li', { key: index }, [ @@ -24,15 +24,15 @@ exports.presetList = function(vm) { value: item.values[graphic.settings.main], }) ), - m('div', { class: 'small-2 columns' }, - m('a.panel-graphic-preset-remove.button.success', { - onclick: vm.displayPreset.bind(vm, item), - }, 'Display') - ), - m('div', { class: 'small-2 columns' }, - m('a.panel-graphic-preset-remove.button.alert', { - onclick: vm.removePreset.bind(vm, item), - }, 'Remove') + m('div', { class: 'small-4 columns' }, + [ + m('a.panel-graphic-preset-remove.button.success', { + onclick: vm.displayPreset.bind(vm, item), + }, 'Display'), + m('a.panel-graphic-preset-remove.button.alert', { + onclick: vm.removePreset.bind(vm, item), + }, 'X') + ] ), ]) ]) diff --git a/public/index.html b/public/index.html index 146028a..b28de8e 100644 --- a/public/index.html +++ b/public/index.html @@ -2,6 +2,7 @@