Skip to content

Instantly share code, notes, and snippets.

@ricston-git
Created February 9, 2013 19:50
Show Gist options
  • Save ricston-git/4746767 to your computer and use it in GitHub Desktop.
Save ricston-git/4746767 to your computer and use it in GitHub Desktop.
<cordova>
...
<access origin="http://ricston.com" subdomains="true"/>
...
</cordova>
...
<div data-role="page">
<div data-role="header">
<h1>Employees</h1>
</div>
<div data-role="content">
<ul data-role="listview">
<li><a href="#steve">Steve</a></li>
<li><a href="#regina">Regina</a></li>
<li><a href="#alan">Alan</a></li>
</ul>
</div>
</div>
<div data-role="page" id="regina">
<div data-role="header">
<h1>Regina</h1>
</div>
<div data-role="content">
<ul data-role="listview">
<li><a>Address: Spain</a></li>
<li><a>Tel: 00356 xxxxxxx</a></li>
<li><a>Salary: 500,000</a></li>
</ul>
</div>
</div>
<div data-role="page" id="steve">
...
</div>
<div data-role="page" id="alan">
...
</div>
...
...
<a data-ajax="false" href="http://www.ricston.com/employees.html">Employees</a>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment