1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-16 20:39:49 +02:00

[ticket/9978] Added semicolons to JavaScript in overall_header.

Semicolons have been added to the anonymous functions in the javascript
in overall_header.html. This makes JSLint happier, and also makes the
code easier to minify.

PHPBB3-9978
This commit is contained in:
Callum Macrae 2011-08-19 18:32:09 +01:00
parent 13ca659f1f
commit b18b3363e9

View File

@ -68,7 +68,7 @@
{ {
eval(onload_functions[i]); eval(onload_functions[i]);
} }
} };
window.onunload = function() window.onunload = function()
{ {
@ -76,7 +76,7 @@
{ {
eval(onunload_functions[i]); eval(onunload_functions[i]);
} }
} };
// ]]> // ]]>
</script> </script>