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

data is a string

parent 2dd40d49
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ function ebiFrameworkInvokeScripts() {
**/
document.addEventListener("DOMContentLoaded", function(event) {
var bodyData = document.body.dataset;
if (bodyData["ebiframeworkinvokescripts"] != false) {
if (bodyData["ebiframeworkinvokescripts"] != "false") {
ebiFrameworkInvokeScripts();
}
});
......@@ -344,7 +344,7 @@ function ebiFrameworkInvokeScripts() {
**/
document.addEventListener("DOMContentLoaded", function(event) {
var bodyData = document.body.dataset;
if (bodyData["ebiframeworkinvokescripts"] != false) {
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