30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
|
/**
|
||
|
= Creative Commons Lizenzvertrag =
|
||
|
Diese Software ist von der archium GmbH, Gera ist lizenziert unter einer Creative Commons Namensnennung - Nicht kommerziell - Keine Bearbeitungen 4.0 International Lizenz. (http://creativecommons.org/licenses/by-nc-nd/4.0/deed.de)
|
||
|
Individuelle über diese Lizenz hinausgehende Berechtigungen können Sie unter https://archium.org erhalten.
|
||
|
|
||
|
= Creative Commons License =
|
||
|
Software by archium GmbH, Gera is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. (http://creativecommons.org/licenses/by-nc-nd/4.0/)
|
||
|
Individual permissions beyond the scope of this license may be available at https://archium.org.
|
||
|
**/
|
||
|
function loadScript(url, callback){
|
||
|
var script = document.createElement("script")
|
||
|
script.type = "text/javascript";
|
||
|
|
||
|
if (script.readyState){ //IE
|
||
|
script.onreadystatechange = function(){
|
||
|
if (script.readyState == "loaded" ||
|
||
|
script.readyState == "complete"){
|
||
|
script.onreadystatechange = null;
|
||
|
callback();
|
||
|
}
|
||
|
};
|
||
|
} else { //Others
|
||
|
script.onload = function(){
|
||
|
callback();
|
||
|
};
|
||
|
}
|
||
|
script.src = url;
|
||
|
document.getElementsByTagName("head")[0].appendChild(script);
|
||
|
}
|