From 4fe44a403a86476c178b8b7b279deeeba7c0da1c Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 24 Sep 2010 07:36:47 -0400 Subject: [PATCH] Don't report NS_BINDING_ABORTED errors. Closes issue #19. --HG-- extra : rebase_source : 60d1dff29dede7d93b33912ff1dc9d25461dbd71 --- common/content/dactyl.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/content/dactyl.js b/common/content/dactyl.js index a9c9d186..34892fd3 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -1040,6 +1040,8 @@ const Dactyl = Module("dactyl", { dactyl.beep(); return; } + if (error.result == Cr.NS_BINDING_ABORTED) + return; if (echo) dactyl.echoerr(error);