edge not valid browser and #364

parent 77bcd02f
...@@ -25,10 +25,10 @@ if(clientBrowser[0] == "Chrome" && parseInt(clientBrowser[1]) >= 45 ) ...@@ -25,10 +25,10 @@ if(clientBrowser[0] == "Chrome" && parseInt(clientBrowser[1]) >= 45 )
validBrowser = true; validBrowser = true;
if(clientBrowser[0] == "Opera" && parseInt(clientBrowser[1]) >= 35 ) if(clientBrowser[0] == "Opera" && parseInt(clientBrowser[1]) >= 35 )
validBrowser = true; validBrowser = true;
if(clientBrowser[0] == "Edge" )
validBrowser = true;
if(clientBrowser[0] == "Safari" && parseInt(clientBrowser[1]) >= 10 ) if(clientBrowser[0] == "Safari" && parseInt(clientBrowser[1]) >= 10 )
validBrowser = true; validBrowser = true;
/*if(clientBrowser[0] == "Edge" )
validBrowser = true;*/
// Redirect to view // Redirect to view
if(!validBrowser) window.location = "browserNotCompatible.html"; if(!validBrowser) window.location = "browserNotCompatible.html";
...@@ -150,7 +150,6 @@ ...@@ -150,7 +150,6 @@
<div class="form-group"> <div class="form-group">
<label translate>gender</label> <label translate>gender</label>
<select class="form-control" name="student_gender" id="student_gender" ng-model="formUser.gender" required> <select class="form-control" name="student_gender" id="student_gender" ng-model="formUser.gender" required>
<option value=" " disabled></option>
<option value="F" translate>woman</option> <option value="F" translate>woman</option>
<option value="M" translate>man</option> <option value="M" translate>man</option>
</select> </select>
......
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