Skip to content

Instantly share code, notes, and snippets.

@jhit
Created April 30, 2018 15:11
Show Gist options
  • Select an option

  • Save jhit/b607b0a6c9dda710ca7e459b3a0bb605 to your computer and use it in GitHub Desktop.

Select an option

Save jhit/b607b0a6c9dda710ca7e459b3a0bb605 to your computer and use it in GitHub Desktop.

Revisions

  1. jhit created this gist Apr 30, 2018.
    5 changes: 5 additions & 0 deletions interce
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    const orgTrigger = document.trigger;
    document.trigger = function(eventName, ...args){
    console.log(eventName, args);
    orgTrigger(eventName, ...args);
    };