minor changes on browser compatibility

parent edb19a11
<html lang="en">
<html>
<head>
<meta charset="utf-8">
<title>Pictogram Web</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="img/logo_pictogram.png" type='image/png'>
<script>
var lang = (navigator.language || navigator.userLanguage).split("-")[0];
</script>
</head>
<body>
......@@ -31,9 +34,7 @@
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="languages-margin text-muted text-center">
Si los problemas persisten, contacte con <a href="mailto:soporte@yottacode.com" translate="" class="ng-scope">atención al cliente</a>.
</div>
<div class="languages-margin text-muted text-center">Si los problemas persisten, contacte con <a href="mailto:soporte@yottacode.com" translate="" class="ng-scope">atención al cliente</a>.</div>
</div>
</div>
</div>
......
......@@ -18,9 +18,10 @@ var clientBrowser = (function(){
// Return if client browser valid or not
var validBrowser = false;
if(clientBrowser[0] == "Firefox" && parseInt(clientBrowser[1]) >= 45 )
if(clientBrowser[0] == "Firefox" && parseInt(clientBrowser[1]) >= 53 )
validBrowser = true;
if(clientBrowser[0] == "Chrome" && parseInt(clientBrowser[1]) >= 51 )
validBrowser = true;
// Redirect to view
if(!validBrowser) window.location = "browserNotCompatible.html";
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