mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Edited the PHP combiner and .htaccess logic to accommodate this change, as well as allowing manifest files to use a "../" when referencing files, which will be handy when adding themes that don't include structural files yet. Modified all HTML files to point to /themes/default for their theme.
41 lines
No EOL
1.1 KiB
HTML
Executable file
41 lines
No EOL
1.1 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery Mobile Docs - Lists</title>
|
|
<link rel="stylesheet" href="../../themes/default" />
|
|
<script type="text/javascript" src="../../js/all"></script>
|
|
<script type="text/javascript" src="../docs/docs.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page">
|
|
|
|
<div data-role="header">
|
|
<h1>Button markup options</h1>
|
|
</div><!-- /header -->
|
|
|
|
<div data-role="content">
|
|
|
|
<p><strong>Link</strong> based button</p>
|
|
<a href="index.html" data-role="button">Link element</a>
|
|
|
|
<p><strong>Button</strong> based button</p>
|
|
<button>Button element</button>
|
|
|
|
<p><strong>Input type="button"</strong> based button</p>
|
|
<input type="button" value="Input type=button" />
|
|
|
|
<p><strong>Input type="submit"</strong> based button</p>
|
|
<input type="submit" value="Input type=submit" />
|
|
|
|
<p><strong>Input type="reset"</strong> based button</p>
|
|
<input type="reset" value="Input type=reset" />
|
|
|
|
<p><strong>Input type="image"</strong> based button</p>
|
|
<input type="image" value="Input type=image" />
|
|
|
|
</div><!-- /content -->
|
|
</div><!-- /page -->
|
|
|
|
</body>
|
|
</html> |