Subversion Repositories eFlore/Applications.cel

Rev

Rev 3949 | Rev 3958 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3949 Rev 3950
Line 672... Line 672...
672
};
672
};
Line 673... Line 673...
673
 
673
 
674
WidgetPhotoPopup.prototype.fournirLienIdentiplante = function() {
674
WidgetPhotoPopup.prototype.fournirLienIdentiplante = function() {
675
	const lthis = this;
675
	const lthis = this;
676
	$( '.signaler-erreur-obs' ).each( function() {
676
	$( '.signaler-erreur-obs' ).each( function() {
677
		$( this ).attr( 'href', lthis.urlIP );
677
		$( this ).attr( 'href', 'https://' + lthis.urlIP );
678
	});
678
	});
Line 679... Line 679...
679
};
679
};
680
 
680
 
Line 778... Line 778...
778
	if (direction == 'droite'){
778
	if (direction == 'droite'){
779
		angle += 90;
779
		angle += 90;
780
	} else {
780
	} else {
781
		angle -= 90;
781
		angle -= 90;
782
	}
782
	}
783
	
783
 
784
	$('#' + imageSelected).css("transform", "rotate(" + angle + "deg) ");
784
	$('#' + imageSelected).css("transform", "rotate(" + angle + "deg) ");
785
	$('#' + imageSelected).data('angle', angle);
785
	$('#' + imageSelected).data('angle', angle);
786
}
786
}
Line 787... Line 787...
787
 
787