From 5e422f7b73ad634ead8dc931259ea695259ed452 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 14 Aug 2014 19:53:04 -0700 Subject: [PATCH] Fix MOW resize loop bug. --- common/content/mow.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/content/mow.js b/common/content/mow.js index 2b6d7654..d3889916 100644 --- a/common/content/mow.js +++ b/common/content/mow.js @@ -184,7 +184,8 @@ var MOW = Module("mow", { windowEvents: { resize: function onResize(event) { - this._resize.tell(); + if (event.target == window) + this._resize.tell(); } },