diff options
author | Ca-Phun Ung <pazu2k@gmail.com> | 2009-02-01 05:50:12 +0000 |
---|---|---|
committer | Ca-Phun Ung <pazu2k@gmail.com> | 2009-02-01 05:50:12 +0000 |
commit | 1866e1382f7ef89721432cb75e505356f067f99d (patch) | |
tree | ba55c75c6f2439476bc0205a6819d0a7d8543ecc /tests/visual/datepicker | |
parent | ce0daae2327dceaaf5dabc0eb92df6b0f20789af (diff) | |
download | jquery-ui-1866e1382f7ef89721432cb75e505356f067f99d.tar.gz jquery-ui-1866e1382f7ef89721432cb75e505356f067f99d.zip |
datepicker: #4032 - Incorrect layout in multiple month rows. I noticed the static tests were recently updated with a row-break so I have added the row-break fix for now so it will be ready for the release. We should seriously consider inline-block.
Diffstat (limited to 'tests/visual/datepicker')
-rw-r--r-- | tests/visual/datepicker/multimonth.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/visual/datepicker/multimonth.html b/tests/visual/datepicker/multimonth.html new file mode 100644 index 000000000..c59d75b13 --- /dev/null +++ b/tests/visual/datepicker/multimonth.html @@ -0,0 +1,21 @@ +<!doctype html> +<html lang="en"> +<head> + <title>Datepicker Visual Test : Default</title> + <link rel="stylesheet" href="../visual.css" type="text/css" /> + <link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css"> + <script type="text/javascript" src="../../../jquery-1.3.1.js"></script> + <script type="text/javascript" src="../../../ui/ui.core.js"></script> + <script type="text/javascript" src="../../../ui/ui.datepicker.js"></script> + <script type="text/javascript"> + $(function() { + $('#datepicker').datepicker({numberOfMonths: [4,3], showButtonPanel: true }); + }); + </script> +</head> +<body> + +<div id="datepicker"></div> + +</body> +</html> |