diff options
author | parth | 2012-04-11 19:30:05 +0530 |
---|---|---|
committer | parth | 2012-04-11 19:30:05 +0530 |
commit | a57267769e45ce76bbb98f3ebd9243938e311b0d (patch) | |
tree | e8fb3f0c7312236dcda3f85d4be0df887f3e93bd | |
parent | d1caf576d100ccd4281af7e60784151e6c1d964a (diff) | |
download | aloha-a57267769e45ce76bbb98f3ebd9243938e311b0d.tar.gz aloha-a57267769e45ce76bbb98f3ebd9243938e311b0d.tar.bz2 aloha-a57267769e45ce76bbb98f3ebd9243938e311b0d.zip |
Now compatible with IE 7 as well
-rw-r--r-- | aloha/static/js/browser-check.js | 2 | ||||
-rw-r--r-- | aloha/template/base.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/aloha/static/js/browser-check.js b/aloha/static/js/browser-check.js index 3f1bfcf..7e68242 100644 --- a/aloha/static/js/browser-check.js +++ b/aloha/static/js/browser-check.js @@ -1,5 +1,5 @@ $(document).ready(function(){ - if(($.browser.msie) && ($.browser.version <=7)){ + if(($.browser.msie) && ($.browser.version <7)){ window.location="/browser-version" } if(($.browser.mozilla) && (parseInt($.browser.version) <3)){ diff --git a/aloha/template/base.html b/aloha/template/base.html index 9185e11..db38c3c 100644 --- a/aloha/template/base.html +++ b/aloha/template/base.html @@ -81,7 +81,7 @@ <li class="nav-header"><h2>Notes</h2></li> <li><hr></li> <li><span class="label label-important pull-right">Important</span></li> - <li>Supported Browsers : <br />Google chrome >= 12<br /> Mozilla Firefox >= 3<br /> Microsoft Internet Explorer >= 8 <br />Opera >=11.0</li> + <li>Supported Browsers : <br />Google chrome ≥ 12<br /> Mozilla Firefox ≥ 3<br /> Microsoft Internet Explorer ≥ 7<br />Opera ≥ 11.0</li> <li><hr></li> <li><span class="label label-info pull-right">Info</span></li> <li>JAM 2012 allotment online form filling starts from : 12-4-2012.</li> |