Ver Mensaje Individual
  #7 (permalink)  
Antiguo 25/07/2006, 10:56
Avatar de virla
virla
 
Fecha de Ingreso: julio-2002
Ubicación: Rio Gallegos - Santa Cruz
Mensajes: 893
Antigüedad: 22 años, 4 meses
Puntos: 1
por lo que veo no me hace ningun cambio

remplase esto
function tiempoLectura(que)
{
tiempo=(que.length/100)/15
tiempo=tiempo.toString()
punto="."
tiempo2=tiempo.replace(punto,"'")
dec=tiempo2.indexOf("'")+3
tiempo2=tiempo2.substring(0,tiempo2.indexOf("'")+3 )
return tiempo2
}

por

function tiempoLectura(que)
{
tiempo=Math.round(que.length/15)/100;
return tiempo.toString().split(".")[0]+"'"+Math.round(tiempo.toString().split(".")[1]*0.6);
}
y es como si fuera lo mismo por lo menos no veo que realice ningun cambio me da el mismo resultado
__________________
---->Sin ayuda no se llega a ningun lado<----
Virla