From 84b121c762bd0af986d5a82f7e91b42ce93643c3 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 14 Feb 2011 05:13:40 -0500 Subject: [PATCH] Make @: work again. --- common/content/events.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/events.js b/common/content/events.js index 8c72d6ae..c64dee02 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -133,10 +133,10 @@ var ProcessorStack = Class("ProcessorStack", { if (callable(res)) actions.push(res); - if (isinstance(res, KeyProcessor)) - processors.push(res); if (res === Events.WAIT || input.waiting) processors.push(input); + if (isinstance(res, KeyProcessor)) + processors.push(res); } events.dbg("RESULT: " + (callable(result) ? {}.toString.call(result) : result) + " " + event.getPreventDefault());