Subversion Repositories eFlore/Applications.coel

Rev

Rev 1817 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1816 mathias 1
package org.tela_botanica.client.util;
2
 
3
public class Analytics {
4
 
5
	/**
6
	 * Envoie une notification à Google Analytics, comme quoi la page "url" a été visitée
7
	 * @param url
8
	 */
9
	public static native void pageVisitee(String url) /*-{
10
		if (url == "") {
11
			url = $wnd.location.href;
12
		}
13
		$wnd.ga('send', 'pageview', url);
14
	}-*/;
15
}