X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2Feuphorik.js;h=c37ee4cd02427feb7bc622826102862c622c7dbd;hp=88ef6e73266c9e0ce30a6c1cc716bd8aaed09338;hb=46b6cab14594802cdb4db9e3d77082815182073b;hpb=c07b41feaaec892d7a4995c91719bba7ecbed7a6 diff --git a/js/euphorik.js b/js/euphorik.js index 88ef6e7..c37ee4c 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -525,6 +525,7 @@ Client.prototype.getJSONProfile = function() "cookie" : this.cookie, "login" : this.login, "password" : this.password, + "nick" : this.pseudo, "email" : this.email, "css" : this.css, "main_page" : this.pagePrincipale < 1 ? 1 : this.pagePrincipale, @@ -688,7 +689,7 @@ Client.prototype.flush = function(async) return false thisClient = this - //this.util.jsonVersAction(this.getJSONProfile()).action.dump("Flush client") + ;;; dumpObj(this.getJSONProfile()) jQuery.ajax( { async: async, @@ -765,11 +766,12 @@ jQuery(document).ready( }) } - jQuery(document).unload( + // TODO : pourquoi jQuery(document).unload ne fonctionne pas ? + jQuery(window).unload( function() { - alert("ok") - client.flush() + //alert("ok") + client.flush(false) } )