Skip to content

Commit

Permalink
fixed tabs size on Brackets startup
Browse files Browse the repository at this point in the history
  • Loading branch information
dnbard committed Aug 24, 2014
1 parent 62bb395 commit 3bf936f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion services/tabSize.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ define(function(require, exports, module){
$DocumentManager.on('pathDeleted', this.sizeHandler);
$DocumentManager.on('workingSetSort', this.sizeHandler);

$(window).on('resize', this.sizeHandlerSync);
$(window).on('resize', this.sizeHandler);
$(document).ready(this.sizeHandler);
}

module.exports = instance;
Expand Down

0 comments on commit 3bf936f

Please sign in to comment.