blob: e634552f289f8023cca87ab642f75617ad9b6d9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
(function(){
$(document).foundation();
$("#progress .icon").spin("small");
//
// Show test README modal dialog.
//
$("#viewReadme").click(
function()
{
$("#readme-modal").foundation("reveal", "open");
return false;
});
//
// If the page was not loaded from a web server display
// the setup-modal dialog.
//
if(document.location.protocol === "file:")
{
var setupDialog = "<div id=\"setup-modal\" class=\"reveal-modal\" data-reveal>" +
"<p>The Ice for JavaScript Test Suite requires a web server. Please refer to the usage instructions " +
"in our <a href=\"https://github.com/zeroc-ice/ice\">GitHub repository</a> for information " +
"on how to run the web server included with your distribution.</p></div>";
$("body").append(setupDialog);
$("#setup-modal").foundation({
reveal:
{
close_on_background_click: false,
close_on_esc: false
}
});
$("#setup-modal").foundation("reveal", "open");
}
}());
|