diff --git a/src/resources/assets/js/components/image/editor/controls.vue b/src/resources/assets/js/components/image/editor/controls.vue index e63ab16..283e065 100644 --- a/src/resources/assets/js/components/image/editor/controls.vue +++ b/src/resources/assets/js/components/image/editor/controls.vue @@ -8,8 +8,10 @@ :disabled="processing" class="btn-plain" @click.stop="operations(item.op)"> - + + + @@ -27,51 +29,51 @@ export default { controlsList: [ { trans: 'move', - op: 'move', - mode: 'move', - icon: 'arrows' + op : 'move', + mode : 'move', + icon : 'arrows' }, { trans: 'crop', - op: 'crop', - mode: 'crop', - icon: 'crop' + op : 'crop', + mode : 'crop', + icon : 'crop' }, { trans: 'crop_zoom_in', - op: 'zoom-in', - mode: null, - icon: 'search-plus' + op : 'zoom-in', + mode : null, + icon : 'search-plus' }, { trans: 'crop_zoom_out', - op: 'zoom-out', - mode: null, - icon: 'search-minus' + op : 'zoom-out', + mode : null, + icon : 'search-minus' }, { trans: 'crop_rotate_left', - op: 'rotate-left', - mode: null, - icon: 'rotate-left' + op : 'rotate-left', + mode : null, + icon : 'rotate-left' }, { trans: 'crop_rotate_right', - op: 'rotate-right', - mode: null, - icon: 'rotate-right' + op : 'rotate-right', + mode : null, + icon : 'rotate-right' }, { trans: 'crop_flip_horizontal', - op: 'flip-horizontal', - mode: null, - icon: 'arrows-h' + op : 'flip-horizontal', + mode : null, + icon : 'arrows-h' }, { trans: 'crop_flip_vertical', - op: 'flip-vertical', - mode: null, - icon: 'arrows-v' + op : 'flip-vertical', + mode : null, + icon : 'arrows-v' } ] } diff --git a/src/resources/assets/js/components/image/editor/filters/controls.vue b/src/resources/assets/js/components/image/editor/filters/controls.vue index 02322cc..c288bd2 100644 --- a/src/resources/assets/js/components/image/editor/filters/controls.vue +++ b/src/resources/assets/js/components/image/editor/filters/controls.vue @@ -1,13 +1,15 @@