12345678910111213141516171819202122 |
- /****************************************************************
- *
- * Licensed Materials - Property of IBM
- *
- * IBM Cognos Products: HTS
- *
- *(C) Copyright IBM Corp. 2005, 2010
- *
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- *
- ****************************************************************/
- //<!-- The purpose of this file is to set the dojo locale, before dojo is loaded.
- // It reads the part of the script tag that defines the djConfig
- //-->
- var scripts = document.getElementsByTagName("script");
- for(var i = 0; i < scripts.length; i++){
- var src = scripts[i].getAttribute("src");
- if(!src){ continue; }
- if(src.indexOf("djConfig.js")!= -1) {
- eval(src.substr(src.indexOf("?")+1));
- }
- }
|