mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
datepicker: fixes #3679 [focus error on IE if disabled]: added visual test to verify. Both IE 6 & 7 do not return an error.
This commit is contained in:
parent
1b6638cbe7
commit
8afca52198
@ -53,6 +53,10 @@
|
|||||||
$('#inl').datepicker('destroy');
|
$('#inl').datepicker('destroy');
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// disabled input datepicker
|
||||||
|
$('#d3').datepicker();
|
||||||
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
@ -87,6 +91,12 @@
|
|||||||
Datepicker Inline
|
Datepicker Inline
|
||||||
<div id="inl"></div>
|
<div id="inl"></div>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="plugin">
|
||||||
|
Datepicker disabled input
|
||||||
|
<div>
|
||||||
|
<input type="text" id="d3" disabled="true">
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
Reference in New Issue
Block a user