157,12 → 157,11 |
WidgetSaisie.prototype.initEvts = function() { |
var lthis = this; |
// EmpĂȘcher que le module carto ne bind ses events partout |
$( '#tb-geolocation' ).on( 'submit blur click focus mousedown mouseleave mouseup touchend touchstart change', '.mat-icon-button', function( event ) { |
$( '#tb-geolocation' ).on( 'submit blur click focus mousedown mouseleave mouseup touchend touchstart change', '*', function( event ) { |
event.preventDefault(); |
return false; |
}); |
|
|
// identité |
$( '#deconnexion a' ).click( function( event ) { |
event.preventDefault(); |
275,7 → 274,6 |
|
WidgetSaisie.prototype.connexion = function( urlAuth, connexionOnOff ) { |
var lthis = this; |
console.log(urlAuth); |
$.ajax({ |
url: urlAuth, |
type: "GET", |
367,9 → 365,9 |
}; |
|
WidgetSaisie.prototype.urlProfilUtilisateur = function( pseudo ) { |
var urlPart = ( 'prod' === this.mode ) ? 'www.tela-botanica.org/' : 'beta.tela-botanica.org/test/'; |
var urlPart = ( 'test' === this.mode ) ? '/test/' : ''; |
|
return 'https://' + urlPart + 'membres/' + pseudo.toLowerCase().replace( ' ', '-' ); |
return window.location.origin + urlPart + 'membres/' + pseudo.toLowerCase().replace( ' ', '-' ); |
}; |
|
// Identité Observateur par courriel |