commit 8cd539e6d18b5a676505f8592122615c67ccd7fe
parent 3b917d56a2dd60e878960ee9395deb5c199a8d8a
Author: Georges Dupéron <jahvascriptmaniac+github@free.fr>
Date: Wed, 18 May 2011 12:43:09 +0200
Suppression des console.log().
Diffstat:
2 files changed, 1 insertion(+), 8 deletions(-)
diff --git a/code/serveur/php/ressources/createGame.js b/code/serveur/php/ressources/createGame.js
@@ -109,7 +109,6 @@ $(function() {
url: "server.php?",
data: "action=4&word="+word, //+"&user="+user+"&passwd="+passwd,
success: function(msg){
- console.log(msg);
input.closest(".wordLine, #center").addClass(msg == "false" ? "invalid" : "valid");
wordsOK[input.attr("id")] = !(msg == false);
}});
@@ -154,7 +153,6 @@ $(function() {
}
var relationsOK = function() {
- console.log(wordsOK);
for(i = 1; i < numWord; i++) {
if(wordsOK["word-"+i]) {
if(!$("#r1-"+i).is(":checked") && !$("#r2-"+i).is(":checked") && !$("#r3-"+i).is(":checked") && !$("#r4-"+i).is(":checked"))
diff --git a/code/serveur/php/ressources/pticlic.js b/code/serveur/php/ressources/pticlic.js
@@ -1,8 +1,4 @@
// ==== URL persistante
-function trace() {
-// console.log('trace', arguments.callee.caller.toString().substring(0,100));
-}
-
var nullFunction = function(){};
var futureHashChange = null;
var runstate = {
@@ -718,4 +714,4 @@ prefs.loadPrefs = function(data) {
}
if (runstate.loaded) jss();
} catch(e) {alert("Error anonymous in prefs.loadPrefs");alert(e);}
-};
-\ No newline at end of file
+};