forked from kapantzak/SearchAreaControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
87 lines (76 loc) · 5.29 KB
/
test.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
86
87
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link href="favicon.ico" rel="icon" type="image/x-icon" />
<title>SearchAreaControl - jQuery plugin</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="searchAreaControl/css/sac-style.css" />
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3 col-xs-12">
<div class="page-header">
<h1><img id="mainLogo" src="img/logo_70.png" /><span id="mainTitleText" class="marginLeft-md">SearchAreaControl</span> <small id="mainTitleSecondaryText">jQuery plugin</small><a id="gitHub" href="https://github.com/kapantzak/SearchAreaControl" class="btn btn-primary pull-right"><i class="fa fa-github"></i><span class="marginLeft-sm">Github</span></a></h1>
</div>
<p>Test page</p>
<p>
<button id="btn1" type="button"></button>
<button id="getSelectedByAttribute_btn1" class="btn btn-default" type="button">Get selected</button>
<button id="destroy_btn1" class="btn btn-danger" type="button">Destroy</button>
<button id="updateDatasource_btn1" class="btn btn-default" type="button">Update datasource</button>
<button id="getPopup" class="btn btn-default" type="button">Get popup (console)</button>
<button id="setDisbaledNodes" class="btn btn-default" type="button">Set disbaled nodes</button>
<button id="enableAll" class="btn btn-default" type="button">Enable all nodes</button>
</p>
<p>
<button id="btn2" class="btn btn-success" type="button"></button>
<button id="getSelectedByAttribute_btn2" class="btn btn-default" type="button">Get selected</button>
<button id="destroy_btn2" class="btn btn-danger" type="button">Destroy</button>
<button id="setSelectedNodes2" class="btn btn-default" type="button">Set selected nodes</button>
<button id="setLocale" class="btn btn-default" type="button">Set locale (el)</button>
</p>
<p>
<button id="btnModal" class="btn btn-default" type="button">Bootstrap modal</button>
</p>
<!-- MODAL -->
<div id="myModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
<button id="btn3" class="btn btn-success" type="button"></button>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footer" class="row">
<div class="container-fluid">
<img id="kapa_logo" src="img/logo_sm.png" alt="logo">
<i>Developed by <a href="mailto:[email protected]" title="[email protected]">John Kapantzakis</a> (c) 2017</i><br>
<i>Released under the <a href="LICENSE.txt" target="_blank">MIT License</a></i>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.12.0.min.js"><\/script>')</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="searchAreaControl/searchAreaControl.js"></script>
<script src="js/main.js"></script>
</body>
</html>