mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Removed some logs
This commit is contained in:
@@ -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.");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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: {
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user