fix(ecma): Detección de la librería Web corregida.

This commit is contained in:
KyMAN 2024-06-01 11:03:41 +02:00
parent 20631474e6
commit a6e5c5be38
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ Mapeate = function(entradas){
Mapeate.Vistas && (vistas = this.vistas = new Mapeate.Vistas(self, entradas)); Mapeate.Vistas && (vistas = this.vistas = new Mapeate.Vistas(self, entradas));
Mapeate.Mapas && (mapas = this.mapas = new Mapeate.Mapas(self, entradas)); Mapeate.Mapas && (mapas = this.mapas = new Mapeate.Mapas(self, entradas));
Mapeate.Base && (base = this.base = new Mapeate.Base(self, entradas)); Mapeate.Base && (base = this.base = new Mapeate.Base(self, entradas));
Mapeate.Web && (web = this.web = new Mapeate.Web(self, entradas)); web = this.web = Mapeate.Web ? new Mapeate.Web(self, entradas) : null;
self.print("ok", "mapeate_construido"); self.print("ok", "mapeate_construido");

View File

@ -1 +1 @@
0.0.25 0.0.26