diff --git a/javascript/web/AmiGOBioView.js b/javascript/web/AmiGOBioView.js index 662746871..f30940a27 100644 --- a/javascript/web/AmiGOBioView.js +++ b/javascript/web/AmiGOBioView.js @@ -393,3 +393,8 @@ jQuery(document).ready(function(){ console.log('model_ids', model_ids); console.log('foo', p); }); + +// Embed the jQuery setup runner. +(function (){ + jQuery(document).ready(function(){ AmiGOBioViewInit(); }); +})(); diff --git a/javascript/web/AmiGOCytoView.js b/javascript/web/AmiGOCytoView.js index eb2f9eee2..bdf3314b7 100644 --- a/javascript/web/AmiGOCytoView.js +++ b/javascript/web/AmiGOCytoView.js @@ -308,3 +308,8 @@ jQuery(document).ready(function(){ AmiGOCytoViewInit(); } }); + +// Embed the jQuery setup runner. +(function (){ + jQuery(document).ready(function(){ AmiGOCytoViewInit(); }); +})();