forked from swisnl/jQuery-contextMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (20 loc) · 915 Bytes
/
index.html
File metadata and controls
25 lines (20 loc) · 915 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>QUnit Test Suite</title>
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css" type="text/css" media="screen">
<script type="text/javascript" src="../node_modules/qunitjs/qunit/qunit.js"></script>
<!-- Your project file goes here -->
<link rel="stylesheet" href="../src/jquery.contextMenu.css" type="text/css" media="screen">
<script src="../node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="../src/jquery.ui.position.js"></script>
<script type="text/javascript" src="../src/jquery.contextMenu.js"></script>
<!-- Your tests file goes here -->
<script type="text/javascript" src="unit/contextmenu.test.js"></script>
<script type="text/javascript" src="unit/test-events.click.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>