From 54f6e9a67058e43f941210dd72a46a6c1e08c349 Mon Sep 17 00:00:00 2001 From: Tom Duijf Date: Sun, 25 Oct 2015 10:44:37 +0000 Subject: [PATCH] CI corrections --- src/more-infos/more-info-configurator.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/more-infos/more-info-configurator.js b/src/more-infos/more-info-configurator.js index 659ba918fa..07f3d27b64 100644 --- a/src/more-infos/more-info-configurator.js +++ b/src/more-infos/more-info-configurator.js @@ -43,8 +43,9 @@ export default new Polymer({ type: String, computed: 'computeSubmitCaption(stateObj)', }, - fieldInput : { - type: Object, value: {} + + fieldInput: { + type: Object, value: {}, }, }, @@ -57,7 +58,7 @@ export default new Polymer({ }, fieldChanged(ev) { - const el = ev.target + const el = ev.target; this.fieldInput[el.id] = el.value; }, @@ -66,7 +67,7 @@ export default new Polymer({ const data = { configure_id: this.stateObj.attributes.configure_id, - fields: this.fieldInput + fields: this.fieldInput; }; serviceActions.callService('configurator', 'configure', data).then(