Removed some logs

This commit is contained in:
Kasper Rynning-Tønnesen
2018-02-06 15:01:06 +01:00
parent fe722acacc
commit c1d56ebb55
3 changed files with 0 additions and 6 deletions

View File

@@ -30,7 +30,6 @@ function requested_change(type, string, channel) {
} }
}); });
} catch(e) { } catch(e) {
console.log(e);
console.log("Mail is not configured and wont work"); console.log("Mail is not configured and wont work");
console.log("Seems you forgot to create a mailconfig.js in /server/config/. Have a look at the mailconfig.example.js."); console.log("Seems you forgot to create a mailconfig.js in /server/config/. Have a look at the mailconfig.example.js.");
} }

View File

@@ -239,7 +239,6 @@ var Helper = {
$("#contact-form-from").attr("disabled", "true"); $("#contact-form-from").attr("disabled", "true");
$("#contact-form-message").attr("disabled", "true"); $("#contact-form-message").attr("disabled", "true");
var captcha_response = grecaptcha.getResponse(); var captcha_response = grecaptcha.getResponse();
console.log(captcha_response);
$.ajax({ $.ajax({
type: "POST", type: "POST",
data: { data: {

View File

@@ -19,8 +19,6 @@ var Player = {
} }
} }
try { try {
console.log(paused);
console.log(Player.player.getPlayerState());
state = Player.player.getPlayerState(); state = Player.player.getPlayerState();
} catch(e) { } catch(e) {
state = null; state = null;
@@ -142,7 +140,6 @@ var Player = {
compared = true; compared = true;
} }
console.log("Compared", compared);
if(compared || chromecastAvailable){ if(compared || chromecastAvailable){
Player.loadVideoById(video_id, duration); Player.loadVideoById(video_id, duration);
@@ -171,7 +168,6 @@ var Player = {
setTimeout(function(){Player.loaded = true;},500); setTimeout(function(){Player.loaded = true;},500);
} }
}catch(e) { }catch(e) {
console.log(e);
if(chromecastAvailable) { if(chromecastAvailable) {
Player.loadVideoById(video_id, duration); Player.loadVideoById(video_id, duration);
Player.seekTo(seekTo); Player.seekTo(seekTo);