Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2844 → Rev 2845

/branches/v2.24-sarcloir/src/org/tela_botanica/client/util/Analytics.java
23,7 → 23,7
*/
public static void pageVisitee(String url) {
if (Configuration.isProd()) {
Util.LogVersFirebug("Page vue: " + url);
//Util.LogVersFirebug("Page vue: " + url);
Analytics.pageVisiteeNatif(url);
} else {
53,7 → 53,7
*/
public static void evenement(String categorie, String action, String label, int nombre) {
if (Configuration.isProd()) {
Util.LogVersFirebug("Evenement: " + categorie + ", " + action + ", " + label + ", " + nombre);
//Util.LogVersFirebug("Evenement: " + categorie + ", " + action + ", " + label + ", " + nombre);
Analytics.evenementNatif(categorie, action, label, nombre);
}
}