aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/date-formats.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/datepicker/date-formats.html')
-rw-r--r--demos/datepicker/date-formats.html9
1 files changed, 2 insertions, 7 deletions
diff --git a/demos/datepicker/date-formats.html b/demos/datepicker/date-formats.html
index 5664beb5b..a07d7e336 100644
--- a/demos/datepicker/date-formats.html
+++ b/demos/datepicker/date-formats.html
@@ -4,18 +4,13 @@
<meta charset="utf-8">
<title>jQuery UI Datepicker - Format date</title>
<link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../external/jquery/jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/datepicker.js"></script>
<link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
+ <script src="../../external/requirejs/require.js"></script>
+ <script src="../bootstrap.js">
$( "#datepicker" ).datepicker();
$( "#format" ).on( "change", function() {
$( "#datepicker" ).datepicker( "option", "dateFormat", $( this ).val() );
});
- });
</script>
</head>
<body>