Datepicker demos: Fixed option hash style for consistency.

This commit is contained in:
Scott González
2008-12-30 18:23:21 +00:00
parent 83de363610
commit 31b8edcd4a
3 changed files with 11 additions and 3 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>