Created
February 9, 2013 19:50
-
-
Save ricston-git/4746767 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cordova> | |
... | |
<access origin="http://ricston.com" subdomains="true"/> | |
... | |
</cordova> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<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> | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<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