CI corrections

This commit is contained in:
Tom Duijf 2015-10-25 10:44:37 +00:00
parent d315bf6473
commit 54f6e9a670

View File

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