1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-09 00:34:12 +01:00
This commit is contained in:
Kris Maglione
2012-12-06 19:10:08 -08:00
parent 79d2981a97
commit fa204e3b96

View File

@@ -234,8 +234,8 @@ var Buffer = Module("Buffer", {
})(win || this.win);
if (focusedFirst)
return frames.filter(function (f) f === this.focusedFrame).concat(
frames.filter(function (f) f !== this.focusedFrame));
return frames.filter(function (f) f === this.focusedFrame, this).concat(
frames.filter(function (f) f !== this.focusedFrame, this));
return frames;
},