You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1.
geo.parse([G, U, L]);
for (var i=0; i < geo.docs.length; i++) { geo.hideDocument(geo.docs[i]); }
var aux;
switch(N){
case "G":
aux=geo.docs[0].url;
window.alert(aux); Shows G - Correct!
geo.showDocument(geo.docs[0]);
break;
case "U":
aux=geo.docs[1].url;
window.alert(aux); Shows L - ¿why?
geo.showDocument(geo.docs[1]);
break;
case "L":
aux=geo.docs[2].url;
window.alert Shows U - ¿why?
geo.showDocument(geo.docs[2]);
break;
default:
break;
What is the expected output? What do you see instead?
case "G":
aux=geo.docs[0].url;
window.alert(aux); G
case "U":
aux=geo.docs[1].url;
window.alert(aux); Expect U (Second in the array)
case "L":
aux=geo.docs[2].url;
window.alert Expect L (Third in the array)
What version of the product are you using? On what operating system?
kmz branch r123
Original issue reported on code.google.com by [email protected] on 13 Mar 2015 at 2:28
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 13 Mar 2015 at 2:28The text was updated successfully, but these errors were encountered: