Skip to content

Commit

Permalink
Fix last video bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zaius committed Dec 29, 2010
1 parent 1f41ec8 commit 7798222
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion youtube_playlist.js
Expand Up @@ -43,7 +43,7 @@
var index = 0;
var index_inc = function() {
index++;
if (index >= ids.count) index -= ids.length;
if (index >= ids.length) index -= ids.length;
}
var index_dec = function() {
index--;
Expand Down
2 changes: 1 addition & 1 deletion youtube_playlist.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7798222

Please sign in to comment.