Commit d425d04f authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Corrige ruta de imagen OG y marcador por defecto

Ambas imágenes se referenciaban con "public" en su ruta, por lo que no
son resolubles cuando la app está construida. Omitir esta parte es lo
correcto, la app nodejs ya lo resuelve de forma transparente.
parent 07d0f567
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ define([
				baseMetaTags: {
					"og:type": "website",
					"og:url": window.location.href,
					"og:image": "https://redmic.es/public/resources/images/logos/redmic-logo-1200x1200.jpg",
					"og:image": "https://redmic.es/resources/images/logos/redmic-logo-1200x1200.jpg",
					"og:image:type": "image/jpeg",
					"og:image:width": "1200",
					"og:image:height": "1200",
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ define([

		_initialize: function() {

			L.Icon.Default.imagePath = "/public/javascript/leaflet/dist/images";
			L.Icon.Default.imagePath = "/javascript/leaflet/dist/images";

			this.mapParentNode = put("div.map");
			this.mapNode = put(this.mapParentNode, "div.map");