diff options
author | Kato Kazuyoshi <kato.kazuyoshi@gmail.com> | 2011-05-05 04:07:43 +0900 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-05-04 17:12:01 -0400 |
commit | 870977ae6b314cecb27a7bfe18b0fdf46c8e9f79 (patch) | |
tree | 453e126685700ea559cf2b5e222bad061b989925 /tests | |
parent | f9faa0ab5fb2b9f332de93fd9d8fb97e9957ff6d (diff) | |
download | jquery-ui-870977ae6b314cecb27a7bfe18b0fdf46c8e9f79.tar.gz jquery-ui-870977ae6b314cecb27a7bfe18b0fdf46c8e9f79.zip |
Datepicker: Remove old "ui-datepicker-multi-N" before add new one. Fixed #6704 - Display overflow when multiple datepickers have different numberOfMonths.
(cherry picked from commit fc97ccd398b60525fd9e4c0e9aa1f51048984394)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/datepicker/datepicker_core.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/unit/datepicker/datepicker_core.js b/tests/unit/datepicker/datepicker_core.js index 2730ec861..3cb4a2f50 100644 --- a/tests/unit/datepicker/datepicker_core.js +++ b/tests/unit/datepicker/datepicker_core.js @@ -121,8 +121,16 @@ test('baseStructure', function() { ok(child.is('div.ui-datepicker-group') && child.is('div.ui-datepicker-group-last'), 'Structure multi [2] - second month division'); child = dp.children(':eq(2)'); ok(child.is('div.ui-datepicker-row-break'), 'Structure multi [2] - row break'); + ok(dp.is('.ui-datepicker-multi-2'), 'Structure multi [2] - multi-2'); inp.datepicker('hide').datepicker('destroy'); + // Multi-month 3 + inp = init('#inp', {numberOfMonths: 3}); + inp.focus(); + ok(dp.is('.ui-datepicker-multi-3'), 'Structure multi [3] - multi-3'); + ok(! dp.is('.ui-datepicker-multi-2'), 'Structure multi [3] - Trac #6704'); + inp.datepicker('hide').datepicker('destroy'); + // Multi-month [2, 2] inp = init('#inp', {numberOfMonths: [2, 2]}); inp.focus(); |