-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (80 loc) · 2.9 KB
/
index.html
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="css/basic.css"/>
<script type="text/javascript" src="js/jquery-2.0.3.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.10.3.min.js"></script>
<script type="text/javascript" src="js/jquery.sudoSlider-3.1.6.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var lang = (window.sankore)?sankore.locale().substr(0,2):"en"; //local language
$.ajax({
type: 'POST',
url: 'locales/' + lang + '.txt',
dataType : 'json',
statusCode: {
404 : function() {
},
200 : function(data) {
window.sankoreLang = data;
start();
}
}
});
if(window.sankore) {
sankore.enableDropOnWidget(false);
}
});
</script>
</head>
<body>
<table class="body_table" cellpadding="0" cellspacing="0">
<tr>
<td class="b_top_left"></td>
<td class="b_top_center">
<div id="wgt_name"></div>
<div id="wgt_help"></div>
<div id="wgt_display" class="selected"></div>
<div id="wgt_edit"></div>
</td>
<td class="b_top_right"><td>
</tr>
<tr>
<td class="b_center_left"></td>
<td>
<div id="help"></div>
<div id="slider">
<div id="parameters">
<div class="inline">
<label for="style_select"></label>
<select id="style_select">
<option value="1"></option>
<option value="2"></option>
<option value="3"></option>
</select>
<label for="index_checkbox"></label>
<input type="checkbox" id="index_checkbox" checked="checked" />
<label for="speed"></label>
<input type="text" id="speed" size="4" maxLength="4" value="400" />
<label for="random"></label>
<input type="checkbox" id="random" checked="checked" />
</div>
</div>
<ul class="slideshow"></ul>
</div>
<span id="prevBtn" class="customLink"><a rel="prev" href="javascript:void(0);"></a></span>
<span id="nextBtn" class="customLink"><a rel="next" href="javascript:void(0);"></a></span>
</td>
<td class="b_center_right"></td>
</tr>
<tr>
<td class="b_bottom_left"></td>
<td class="b_bottom_center"><span id="randomLink"> ? </span></td>
<td class="b_bottom_right"></td>
</tr>
</table>
</body>
</html>