File: droppable.html

package info (click to toggle)
jqueryui 1.12.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,784 kB
  • ctags: 668
  • sloc: php: 584; xml: 104; makefile: 75
file content (24 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Droppable Test Suite</title>

	<script src="../../../external/requirejs/require.js"></script>
	<script src="../../lib/css.js" data-modules="core"></script>
	<script src="../../lib/bootstrap.js" data-widget="droppable"
		data-no-back-compat="true"></script>
</head>
<body>

<div id="qunit"></div>
<div id="qunit-fixture">

<div id="draggable1" style="width: 25px; height: 25px;">Draggable</div>
<div id="droppable1" style="width: 100px; height: 100px;">Droppable</div>
<div id="droppable2" style="width: 100px; height: 100px;">Droppable</div>
<div style='width:1000px;height:1000px;'>&nbsp;</div>

</div>
</body>
</html>