diff options
-rw-r--r-- | js/test/Common/controller.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/js/test/Common/controller.html b/js/test/Common/controller.html index 2aae470dc89..3562b6867a2 100644 --- a/js/test/Common/controller.html +++ b/js/test/Common/controller.html @@ -9,14 +9,6 @@ {{#cssDeps}} <link rel="stylesheet" type="text/css" href="{{.}}"/> {{/cssDeps}} - <script> - $(document).foundation(); - $(document).ready(function() { - $("#clientConsole").height(300); - $("#serverConsole").height(100); - runController($("#clientConsole"), $("#serverConsole"), "{{{scripts}}}".split(",")); - }); - </script> </head> <body> <div id="header"> @@ -51,5 +43,13 @@ {{#scripts}} <script src="{{.}}"></script> {{/scripts}} + <script> + $(document).foundation(); + $(document).ready(function() { + $("#clientConsole").height(300); + $("#serverConsole").height(100); + runController($("#clientConsole"), $("#serverConsole"), "{{{scripts}}}".split(",")); + }); + </script> </body> </html> |