Remove useless variable.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
This commit is contained in:
Hugues Peccatte 2015-12-11 22:32:53 +01:00
parent e4dbd3aee4
commit da525ae928

View File

@ -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;