Skip to content
Snippets Groups Projects
Commit 18e13cc1 authored by khawkins98's avatar khawkins98
Browse files

< != <=

parent c76e576d
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ function ebiFrameworkInvokeScripts() {
document.addEventListener("DOMContentLoaded", function(event) {
var bodyData = document.body.dataset;
// document.body.dataset not supported in < ie10
if (isIE () && isIE () < 10) { bodyData = []; }
if (isIE () && isIE () <= 10) { bodyData = []; }
if (bodyData["ebiframeworkinvokescripts"] != "false") {
ebiFrameworkInvokeScripts();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment