Projet

Général

Profil

0001-maps-don-t-hardcode-border-radius-of-geolocate-butto.patch

Frédéric Péters, 09 juillet 2018 09:38

Télécharger (912 octets)

Voir les différences:

Subject: [PATCH] maps: don't hardcode border radius of geolocate button
 (#25125)

 combo/apps/maps/static/js/leaflet-gps.js | 1 -
 1 file changed, 1 deletion(-)
combo/apps/maps/static/js/leaflet-gps.js
55 55
		this._button.href = '#';
56 56
		this._button.text = '\uf192';
57 57
		this._button.style.fontFamily = 'FontAwesome';
58
		this._button.style.borderRadius = '4px';
59 58
		L.DomEvent
60 59
			.on(this._button, 'click', L.DomEvent.stop, this)
61 60
			.on(this._button, 'click', this._askGps, this);
62
-