[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -34,7 +34,7 @@ export class RaphaelFlowArrowDirective extends RaphaelBase implements OnInit {
error = new EventEmitter();
ARROW_WIDTH = 4;
SEQUENCEFLOW_STROKE = 1.5;
SEQUENCE_FLOW_STROKE = 1.5;
constructor(public elementRef: ElementRef,
raphaelService: RaphaelService) {
@@ -52,9 +52,9 @@ export class RaphaelFlowArrowDirective extends RaphaelBase implements OnInit {
}
public drawLine(flow: any) {
let polyline = new Polyline(flow.id, flow.waypoints, this.SEQUENCEFLOW_STROKE, this.paper);
let polyline = new Polyline(flow.id, flow.waypoints, this.SEQUENCE_FLOW_STROKE, this.paper);
polyline.element = this.paper.path(polyline.path);
polyline.element.attr({'stroke-width': this.SEQUENCEFLOW_STROKE});
polyline.element.attr({'stroke-width': this.SEQUENCE_FLOW_STROKE});
polyline.element.attr({'stroke': '#585858'});
polyline.element.node.id = this.flow.id;
@@ -75,7 +75,7 @@ export class RaphaelFlowArrowDirective extends RaphaelBase implements OnInit {
arrowHead.attr('fill', '#585858');
arrowHead.attr('stroke-width', this.SEQUENCEFLOW_STROKE);
arrowHead.attr('stroke-width', this.SEQUENCE_FLOW_STROKE);
arrowHead.attr('stroke', '#585858');
}