Skip to content

Commit

Permalink
Remove useless variable.
Browse files Browse the repository at this point in the history
Signed-off-by: Hugues Peccatte <[email protected]>
  • Loading branch information
Tithugues committed Dec 11, 2015
1 parent e4dbd3a commit da525ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ $(function () {
$(document).ready(function(){
width = 0;
$('ul.tabs li').each(function(){
var tabWidth = $(this).width() + 10;
width += tabWidth;
width += $(this).width() + 10;
});
var contentWidth = width;
width += 250;
Expand Down

0 comments on commit da525ae

Please sign in to comment.