REPORT de la branche 1.1 : 477->494
[euphorik.git] / js / pageAbout.js
index d51557c..733f77e 100644 (file)
 // You should have received a copy of the GNU General Public License\r
 // along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.\r
 \r
-euphorik.PageAbout = function(client, formateur, util) {\r
+euphorik.PageAbout = function(client, formateur, util, communication) {\r
    this.nom = "about";\r
    \r
    this.client = client;\r
    this.formateur = formateur;\r
-   this.util = util;\r
+   this.util = util;
+   this.communication = communication;\r
 };\r
 \r
 euphorik.PageAbout.prototype.contenu = function() {\r
-   var contenu = "";\r
-   $.ajax({async: false, url: "pages/about.html", success : function(page) { contenu += page; }});\r
-   \r
+   var contenu = this.communication.load("pages/about.html");   \r
    var email = this.util.rot13("znvygb:tert.oheev@tznvy.pbz");\r
    return contenu.replace("{EMAIL}", "<a href=\"" + email+ "\">" + email + "</a>").replace("{EMAIL_LIEN}", email);\r
 };\r