From 3b35b671851aa53408f9c0ad0c845ae8d7fd7900 Mon Sep 17 00:00:00 2001 From: Ilkka Huotari Date: Wed, 22 Oct 2014 04:11:02 +0000 Subject: [PATCH] don't capture click events --- lib/History.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/History.js b/lib/History.js index e844fea..d42b242 100644 --- a/lib/History.js +++ b/lib/History.js @@ -232,7 +232,7 @@ function addListeners(history) { } } - document.addEventListener('click', onClick, true) + document.addEventListener('click', onClick, false) document.addEventListener('submit', onSubmit, false) window.addEventListener('popstate', onPopState, true) }