diff --git a/dev/src/behaviors.js b/dev/src/behaviors.js index 99f2ad42c..c5826b9d8 100644 --- a/dev/src/behaviors.js +++ b/dev/src/behaviors.js @@ -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"; }); diff --git a/dev/src/video.js b/dev/src/video.js index b7db2e316..2fe304041 100644 --- a/dev/src/video.js +++ b/dev/src/video.js @@ -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