_wrapLinesInputChanged()

in web/src/components/panels/result-panel.js [172:181]


  _wrapLinesInputChanged(e) {
    let el = this._wrapLinesInput();
    if (el.disabled) {
      return;
    }
    if (typeof e.target.checked === 'undefined') {
      el.checked = !el.checked;
    }
    this._renderResult();
  }