$(document).ready(function(){
var row = 0;
$('.video-container video').each(function(){
!function(row){
$(this).bind("loadedmetadata", function () {
console.log(row + ':' + this.videoWidth);
videoH[row] = this.videoHeight;
videoW[row] = this.videoWidth;
scaleVideoContainer();
scaleBannerVideoSize($(this),row);
});
}.call(this, row);
++row;
});
});
$(document).ready(function(){
for(var k = 0; k < videos.length; k++) {
var video = videos[k];
video.onloadedmetadata = function() {
console.log(k + ':' + this.videoWidth);
videoH[k] = this.videoHeight;
videoW[k] = this.videoWidth;
};
}
});