incandenza 3 years ago
parent
commit
9419885d0e
1 changed files with 6 additions and 6 deletions
  1. 6 6
      asset/pois.js

+ 6 - 6
asset/pois.js

@@ -49,9 +49,9 @@ var pois=[];
 //Altrimenti è posizionato randomicamente
 
 //Se, ad esempio, un "poi"  ha "id" uguale a "0" allora il corrispettivo contenuto cercato sarà
-//"asset/I_0.jpg" se Immagine
-//"asset/T_0.html" se (iper)Testo
-//"asset/V_0.mp4" se Video
+//"contents/I_0.jpg" se Immagine
+//"contents/T_0.html" se (iper)Testo
+//"contents/V_0.mp4" se Video
 //
 //Recola generale: <poi.type>_<poi.id>.jpg|html|mp4
 
@@ -74,7 +74,7 @@ function resetAllPins(){
     poi.x = 346;
     poi.y = 332;
     poi.id = "0";
-    poi.type = 'I'; //looking for "asset/I_0.jpg"
+    poi.type = 'I'; //looking for "contents/I_0.jpg"
     poi.cat = 'FI'
     pois.push(poi);
 
@@ -83,7 +83,7 @@ function resetAllPins(){
     poi.x= 746;
     poi.y= 432;
     poi.id="1";
-    poi.type = 'V'; //looking for "asset/V_1.mp4"
+    poi.type = 'V'; //looking for "contents/V_1.mp4"
     poi.cat = 'FI'
     pois.push(poi);
 
@@ -92,7 +92,7 @@ function resetAllPins(){
     poi.x= 700;
     poi.y= 402;
     poi.id="2";
-    poi.type = 'T'; //looking for "asset/T_2.html"
+    poi.type = 'T'; //looking for "contents/T_2.html"
     poi.cat = 'FI'
     pois.push(poi);