mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
function stormInit() {
|
|
showFlash();
|
|
var appendLinks = document.getElementsByTagName("a");
|
|
for (var i = 0; i < appendLinks.length; i++) {
|
|
if (appendLinks[i].rel == "append") {
|
|
appendLinks[i].href += this.location;
|
|
}
|
|
}
|
|
}
|