X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageAbout.js;h=362f857b7817983455acca6f3e46975ccf25f686;hp=9d15886bc51facc10569738a14e41254592fc1b8;hb=9fe75dcc30306cb1dc9b5b1aa438094c2f6175f3;hpb=877597872b6660f717aaf54aa1f3001df59b501d diff --git a/js/pageAbout.js b/js/pageAbout.js index 9d15886..362f857 100644 --- a/js/pageAbout.js +++ b/js/pageAbout.js @@ -16,23 +16,21 @@ // You should have received a copy of the GNU General Public License // along with Euphorik. If not, see . -function PageAbout(client, formateur, util) -{ - this.nom = "about" +euphorik.PageAbout = function(client, formateur, util) { + this.nom = "about"; - this.client = client - this.formateur = formateur - this.util = util -} + this.client = client; + this.formateur = formateur; + this.util = util; +}; -PageAbout.prototype.contenu = function() -{ - var contenu = "" - jQuery.ajax({async: false, url: "pages/about.html", success : function(page) { contenu += page }}) - var email = this.util.rot13("znvygb:tert.oheev@tznvy.pbz") - return contenu.replace("{EMAIL}", "" + email + "").replace("{EMAIL_LIEN}", email) -} +euphorik.PageAbout.prototype.contenu = function() { + var contenu = ""; + $.ajax({async: false, url: "pages/about.html", success : function(page) { contenu += page; }}); + + var email = this.util.rot13("znvygb:tert.oheev@tznvy.pbz"); + return contenu.replace("{EMAIL}", "" + email + "").replace("{EMAIL_LIEN}", email); +}; -PageAbout.prototype.charger = function() -{ -} +euphorik.PageAbout.prototype.charger = function() { +};