mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
abdda174f2
sortable: added default value for helper ("clone")
46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Draggable Test Suite</title>
|
|
|
|
<link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
|
|
|
|
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
|
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../ui/ui.sortable.js"></script>
|
|
|
|
<script type="text/javascript" src="qunit/testrunner.js"></script>
|
|
<script type="text/javascript" src="simulate/jquery.simulate.js"></script>
|
|
|
|
<script type="text/javascript" src="sortable.js"></script>
|
|
|
|
<style type="text/css">
|
|
html { border: 0; }
|
|
#main {
|
|
position:absolute !important;
|
|
top: -1000px !important;
|
|
left: -1000px !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1 id="header">jQuery UI Draggable Test Suite</h1>
|
|
<h2 id="banner"></h2>
|
|
<h2 id="userAgent"></h2>
|
|
|
|
<ol id="tests"></ol>
|
|
|
|
<div id="main" style="border: 1px solid black; padding: 10px; margin: 10px;">
|
|
<ul id="sortable">
|
|
<li>Item 1<li>
|
|
<li>Item 2<li>
|
|
<li>Item 3<li>
|
|
<li>Item 4<li>
|
|
<li>Item 5<li>
|
|
</ul>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|