From: Greg Burri Date: Sun, 12 Oct 2008 14:29:24 +0000 (+0000) Subject: FIX oubli de suppression d'un "console.log" X-Git-Tag: 1.1.3~2 X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=commitdiff_plain;h=5fe92d29c210dff10be4d56cbb96471f1168b1cc FIX oubli de suppression d'un "console.log" --- diff --git a/js/euphorik.js b/js/euphorik.js index 148f4cb..4d0d302 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -29,8 +29,8 @@ $(document).ready( var util = new euphorik.Util(formateur); var communication = new euphorik.Communication( function(data) { util.messageDialogue(data.error_message); }, - function() { console.log("show"); $("#waitbar").show(); }, - function() { console.log("hide"); $("#waitbar").hide(); } + function() { $("#waitbar").show(); }, + function() { $("#waitbar").hide(); } ); var client = new euphorik.Client(util, communication); var pages = new euphorik.Pages(fragment, communication);