1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 23:42:27 +01:00

Fix MOW resize loop bug.

This commit is contained in:
Kris Maglione
2014-08-14 19:53:04 -07:00
parent 1ea32b603d
commit 5e422f7b73

View File

@@ -184,7 +184,8 @@ var MOW = Module("mow", {
windowEvents: {
resize: function onResize(event) {
this._resize.tell();
if (event.target == window)
this._resize.tell();
}
},