mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-01-30 03:37:58 -05:00
Datepicker demos: Fixed option hash style for consistency.
This commit is contained in:
@@ -9,7 +9,9 @@
|
||||
<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$('#date123').datepicker({showButtonPanel: true});
|
||||
$('#date123').datepicker({
|
||||
showButtonPanel: true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
@@ -9,7 +9,10 @@
|
||||
<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$('#date123').datepicker({changeMonth:true, changeYear:true});
|
||||
$('#date123').datepicker({
|
||||
changeMonth: true,
|
||||
changeYear: true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
@@ -9,7 +9,10 @@
|
||||
<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$('#date123').datepicker({numberOfMonths: 3, showButtonPanel: true});
|
||||
$('#date123').datepicker({
|
||||
numberOfMonths: 3,
|
||||
showButtonPanel: true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
Reference in New Issue
Block a user