#37 alert for browser incompatibility

parent d711097c
Showing with 4 additions and 1 deletions
......@@ -17,7 +17,10 @@ var clientBrowser = (function(){
// Return if client browser valid or not
var validBrowser = false;
if(clientBrowser[0] == "Firefox" && parseInt(clientBrowser[1]) >= 52 )
if(clientBrowser[0] == "Firefox" && parseInt(clientBrowser[1]) >= 51 )
validBrowser = true;
if(clientBrowser[0] == "Chrome" && parseInt(clientBrowser[1]) >= 51 )
validBrowser = true;
if(!validBrowser) alert("Su navegador no es compatible con Pictogram Web. Actualice a la última versión de Mozilla Firefox o Google Chrome.");
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment