diff --git a/src/controller/projekktor.utils.js b/src/controller/projekktor.utils.js index eb895d6..d3e8b80 100644 --- a/src/controller/projekktor.utils.js +++ b/src/controller/projekktor.utils.js @@ -130,7 +130,7 @@ jQuery(function ($) { if (p.length > 3) p = p.slice(0, 3); - for (i = 0; i < p.length; i++) + for (var i = 0; i < p.length; i++) s = s * 60 + parseFloat(p[i].replace(',', '.')); } @@ -639,4 +639,4 @@ jQuery(function ($) { return "1"; } } -}); \ No newline at end of file +});