Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleExample
_onDetail(e) {
    const handler = this.options.customItemDetailHandler;
    const handlerOptions = {
        ...this.options.customItemDetailHandlerOptions,
        item: this.model,
    };
    const prehookResult = handler && handler(handlerOptions);
    
    if (prehookResult) {
        return;
    }

// [... remaining code here for _onDetail]
}

...