Skip to content

Commit df6ab87

Browse files
committed
Cleanup type test page.
1 parent cdd2589 commit df6ab87

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

grid-type/type.html

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<title>Grid: Type</title>
55
<meta charset=utf-8 />
6-
<link rel="stylesheet" href="../visual.css" />
76
<link rel="stylesheet" href="../themes/base/jquery.ui.all.css" title="ui-theme" />
87
<script src="../jquery-1.4.4.js"></script>
98
<script src="../external/jquery.global.js"></script>
109
<script src="../external/jquery.global.de-DE.js"></script>
1110
<script src="../external/jquery.global.ja-JP.js"></script>
12-
<script src="../ui/jquery.ui.core.js"></script>
13-
<script src="../ui/jquery.ui.widget.js"></script>
14-
<script src="../ui/jquery.ui.datepicker.js"></script>
1511
<script type="text/javascript">
1612
$(function() {
1713
var table = $("table");
@@ -41,10 +37,7 @@
4137
head.data("sort-order", order);
4238
});
4339
thead.children().clone().insertAfter(thead).find("th").each(function() {
44-
var input = $("<input />").appendTo($(this).empty());
45-
if ($(this).data("type") == "date") {
46-
//input.datepicker();
47-
}
40+
$("<input />").appendTo($(this).empty());
4841
});
4942
table.delegate("input", "keyup change", function() {
5043
var head = $(this).parent(),

0 commit comments

Comments
 (0)