Blame view

framework/tests/javascript/TreeDropDownField/TreeDropdownField.html 1.59 KB
0084d336   Administrator   Importers CRUD
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
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
  <html>
  <head>
  	<title>Jasmine Test Runner</title>
  	<link rel="stylesheet" type="text/css" href="../../../thirdparty/jasmine/lib/jasmine.css">
  	<script type="text/javascript" src="../../../thirdparty/jasmine/lib/jasmine.js"></script>
  	<script type="text/javascript" src="../../../thirdparty/jasmine/lib/jasmine-html.js"></script>
  	<script type="text/javascript" src="../../../thirdparty/jasmine-jquery/lib/jasmine-jquery.js"></script>
  	<script type="text/javascript" src="../../../thirdparty/jasmine-dom/lib/jasmine-dom-fixtures.js"></script>
  	<script type="text/javascript" src="../../../thirdparty/jasmine-ajax/lib/mock-ajax.js"></script>
  	<script type="text/javascript" src="../../../thirdparty/jasmine-ajax/lib/spec-helper.js"></script>
  
  	<style type="text/css" href="../../../thirdparty/jstree/themes/default/style.css"></style>
  	<style type="text/css" href="../../../css/TreeDropdownField.css"></style>
  	<script type="text/javascript" src="../../../thirdparty/jquery/jquery.js"></script>
  	<script type="text/javascript" src="../../../thirdparty/jquery-entwine/dist/jquery.entwine-dist.js"></script>
  	<script type="text/javascript" src="../../../thirdparty/jstree/jquery.jstree.js"></script>
  	<script type="text/javascript" src="../../../javascript/TreeDropdownField.js"></script>
  	
  	<script type="text/javascript" src="TreeDropdownField.js"></script>
  
  </head>
  <body>
  <script type="text/javascript">
    jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
    jasmine.getEnv().execute();
  </script>
  
  </body>
  </html>