How to use the @ptsecurity/mosaic/core.McLineSetter function in @ptsecurity/mosaic

To help you get started, we’ve selected a few @ptsecurity/mosaic examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github positive-js / mosaic / packages / mosaic / list / list.component.ts View on Github external
ngAfterContentInit() {
        this.lineSetter = new McLineSetter(this.lines, this._element);
    }
github positive-js / mosaic / src / lib / list / list.component.ts View on Github external
ngAfterContentInit() {
        this._lineSetter = new McLineSetter(this._lines, this._element);
    }
github positive-js / mosaic / src / lib / list / list-selection.component.ts View on Github external
ngAfterContentInit() {
        this._lineSetter = new McLineSetter(this._lines, this._element);
    }