mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-26 02:40:22 +00:00
Inset listviews have no margin now, and regular listviews have -15px margins. Also, collapsibles now have no padding. Updated HTML to remove ui-body classes for content divs, to match these changes. Fixes #161
26 lines
No EOL
743 B
HTML
26 lines
No EOL
743 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery Mobile Framework - Dialog Example</title>
|
|
<link rel="stylesheet" href="../../css/all" />
|
|
<script type="text/javascript" src="../../js/all"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page">
|
|
<div data-role="header" data-theme="d">
|
|
<h1>Dialog Example</h1>
|
|
|
|
</div>
|
|
|
|
<div data-role="content" data-theme="d">
|
|
<h1>Are you sure you want to delete everything?</h1>
|
|
<p>This is a regular page, styled as a dialog! To create a dialog, just link to a normal page and include a transition and <code>data-rel="dialog"</code> attribute.</p>
|
|
<a href="#" data-role="button" data-theme="a">Sounds good</a>
|
|
<a href="#" data-role="button">Cancel</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |