comparison client/src/components/fairway/Fairwayprofile.vue @ 4263:f9c620cf0dd3

fairway_profile: remove console.log()
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 27 Aug 2019 09:09:17 +0200
parents a5694f6d62a4
children 3543af71d04c
comparison
equal deleted inserted replaced
4262:45802eac155b 4263:f9c620cf0dd3
285 let strokeOpacity = 285 let strokeOpacity =
286 strokeColor.length < 8 286 strokeColor.length < 8
287 ? 0.8 287 ? 0.8
288 : parseFloat(parseInt(strokeColor.slice(7), 16) / 255).toFixed(2); 288 : parseFloat(parseInt(strokeColor.slice(7), 16) / 255).toFixed(2);
289 let strokeDash = style.getStroke().getLineDash(); 289 let strokeDash = style.getStroke().getLineDash();
290 console.log({
291 fillColor,
292 fillOpacity,
293 strokeColor,
294 strokeOpacity,
295 strokeDash
296 });
297 return { fillColor, fillOpacity, strokeColor, strokeOpacity, strokeDash }; 290 return { fillColor, fillOpacity, strokeColor, strokeOpacity, strokeDash };
298 }, 291 },
299 applyChange() { 292 applyChange() {
300 if (this.form.template.hasOwnProperty("properties")) { 293 if (this.form.template.hasOwnProperty("properties")) {
301 this.templateData = this.defaultTemplate; 294 this.templateData = this.defaultTemplate;