1
0
Fork 0
forked from 0x2620/oxjs

add some ;, remove print statement

This commit is contained in:
j 2011-10-24 15:13:00 +02:00
commit 3bb224a022
4 changed files with 8 additions and 8 deletions

View file

@ -219,4 +219,4 @@ Ox.SmallVideoTimelineImage = function(options, self) {
return that;
}
};

View file

@ -97,7 +97,7 @@ Ox.VideoElement = function(options, self) {
function loadPages(callback) {
var currentPage = self.currentPage,
nextPage = Ox.mod(currentPage + 1, self.numberOfPages),
previousPage = Ox.mod(currentPage - 1, self.numberOfPages)
previousPage = Ox.mod(currentPage - 1, self.numberOfPages);
loadPage(currentPage, function() {
if (nextPage != currentPage) {
loadPage(nextPage, function() {
@ -276,7 +276,7 @@ Ox.VideoElement = function(options, self) {
Ox.range(start, stop).forEach(function(i) {
if (self.items[i]) {
self.items[i].$videos.forEach(function($video) {
$video[0].src = ''
$video[0].src = '';
$video.remove();
});
delete self.items[i];