projects
/
Epoz.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5451e11
)
Ajout drapeau isIE8max.
author
Benoît Pin
<pin@cri.ensmp.fr>
Sat, 24 May 2014 13:04:24 +0000
(15:04 +0200)
committer
Benoît Pin
<pin@cri.ensmp.fr>
Sat, 24 May 2014 13:04:24 +0000
(15:04 +0200)
epoz/epoz_core/epoz_script_detect.js.dtml
patch
|
blob
|
history
diff --git
a/epoz/epoz_core/epoz_script_detect.js.dtml
b/epoz/epoz_core/epoz_script_detect.js.dtml
index
e29479e
..
f396f51
100755
(executable)
--- a/
epoz/epoz_core/epoz_script_detect.js.dtml
+++ b/
epoz/epoz_core/epoz_script_detect.js.dtml
@@
-95,6
+95,7
@@
function BrowserDetect() {
this.isIE5up = (this.isIE && this.versionMajor >= 5);
this.isIE6x = (this.isIE && this.versionMajor == 6);
this.isIE6up = (this.isIE && this.versionMajor >= 6);
+ this.isIE8max = (this.isIE && this.versionMajor <= 8);
this.isIE4xMac = (this.isIE4x && this.isMac);
}