1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-25 11:13:52 +02:00

Removed console.log

This commit is contained in:
Steve Heffernan 2010-11-22 15:36:10 -08:00
parent 240030fe4d
commit 21a14a7871
2 changed files with 0 additions and 3 deletions

View File

@ -469,7 +469,6 @@ VideoJS.player.newBehavior("fullscreenToggle", function(element){
/* Big Play Button Behaviors
================================================================================ */
VideoJS.player.newBehavior("bigPlayButton", function(element){
console.log(this)
if (!this.bigPlayButtons) {
this.bigPlayButtons = [];
this.onPlay(this.bigPlayButtonsOnPlay);
@ -486,7 +485,6 @@ VideoJS.player.newBehavior("bigPlayButton", function(element){
});
},
hideBigPlayButtons: function(){
console.log(this.bigPlayButtons)
this.each(this.bigPlayButtons, function(element){
element.style.display = "none";
});

View File

@ -68,7 +68,6 @@ var VideoJS = JRClass.extend({
this.extend(functions);
},
activateElement: function(element, behavior){
// if (behavior == "bigPlayButton") { console.log(this.video.id) }
this.behaviors[behavior].call(this, element);
},
/* Errors/Warnings