summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-05-26 17:13:34 +0200
committerBenoit Foucher <benoit@zeroc.com>2017-05-26 17:13:34 +0200
commitea1ba4149be5e7ec49894d0f5180539b892ef09b (patch)
tree7d284f94f0b1f6ff5d0881c0f4a8b860463c8135
parentPHP timeout fix to account for slow marshaling of byte arrays (diff)
downloadice-ea1ba4149be5e7ec49894d0f5180539b892ef09b.tar.bz2
ice-ea1ba4149be5e7ec49894d0f5180539b892ef09b.tar.xz
ice-ea1ba4149be5e7ec49894d0f5180539b892ef09b.zip
Fixed JS browser test failures
-rw-r--r--js/test/Common/controller.html16
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>