X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageAbout.js;h=e5da1cb326e73fd768dd08ae6c577c41886c766f;hp=d51557c5316b4a16c91d23a0de50a318f3efe43f;hb=4a6c575807a90370c0069b688026b10102e1ce10;hpb=217c4d7a0d5f9fee3a8ef0a05ab8506c7f39d5e5 diff --git a/js/pageAbout.js b/js/pageAbout.js index d51557c..e5da1cb 100644 --- a/js/pageAbout.js +++ b/js/pageAbout.js @@ -16,18 +16,17 @@ // You should have received a copy of the GNU General Public License // along with Euphorik. If not, see . -euphorik.PageAbout = function(client, formateur, util) { - this.nom = "about"; +euphorik.PageAbout = function(client, formatter, util, communication) { + this.name = "about"; this.client = client; - this.formateur = formateur; + this.formatter = formatter; this.util = util; + this.communication = communication; }; euphorik.PageAbout.prototype.contenu = function() { - var contenu = ""; - $.ajax({async: false, url: "pages/about.html", success : function(page) { contenu += page; }}); - + var contenu = this.communication.load("pages/about.html"); var email = this.util.rot13("znvygb:tert.oheev@tznvy.pbz"); return contenu.replace("{EMAIL}", "" + email + "").replace("{EMAIL_LIEN}", email); };