custom.js
... ...
@@ -1,7 +1,15 @@
1
-javascript: (function() {
2
- /*
1
+(function() {
2
+ document.addEventListener(
3
+ 'DOMContentLoaded',
4
+ function() {
5
+ moveFooter();
6
+ },
7
+ false
8
+ );
9
+
10
+ function moveFooter() {
3 11
var wikiFooter = document.getElementById('wiki-footer');
4 12
var footer = document.getElementById('footer');
5 13
footer.insertBefore(wikiFooter, footer.firstChild);
6
- */
14
+ }
7 15
})();