mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
b698f809de
Adds a data-composite option and fixes paths for effects. Otherwise just applies the same conversion as already applied to demos, sometimes moving a <style> element to the right place.
22 lines
550 B
HTML
22 lines
550 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Compound Visual Test : Datepicker in Dialog</title>
|
|
<link rel="stylesheet" href="../visual.css">
|
|
<link rel="stylesheet" href="../../../themes/base/all.css">
|
|
<script src="../../../external/requirejs/require.js"></script>
|
|
<script src="../../../demos/bootstrap.js" data-modules="datepicker dialog" data-composite="true">
|
|
$( "#datepicker" ).datepicker();
|
|
$( "#dialog" ).dialog();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="dialog">
|
|
<input id="datepicker">
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|