Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
Add missing parens
Browse files Browse the repository at this point in the history
  • Loading branch information
faho committed Jan 30, 2015
1 parent 03f145d commit ddf540a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contents/code/tilelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ TileList.prototype._onClientTabGroupChanged = function(client) {
var rect = this.tiles[i].rectangle;
if (util.compareRect(rect, client.geometry) == true) {
// TODO: Is this necessary or is desktopChanged always called before tabgroupchanged?
if (this.tiles[i]._currentDesktop == util.getClientDesktop(client) {
if (this.tiles[i]._currentDesktop == util.getClientDesktop(client)) {
tabGroup = this.tiles[i];
break;
}
Expand Down

0 comments on commit ddf540a

Please sign in to comment.