Skip to content
This repository has been archived by the owner on Apr 18, 2019. It is now read-only.

Commit

Permalink
applied basic wp7 theme
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrebnov committed Dec 15, 2011
1 parent 6a55808 commit b0995fb
Show file tree
Hide file tree
Showing 10 changed files with 177 additions and 133 deletions.
12 changes: 6 additions & 6 deletions example/www/audio.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
// Play audio
media1.play();

document.getElementById('play_caption').innerHTML = "<b>Now playing:</b> ";
document.getElementById('play_caption').innerHTML = "Now playing: ";
document.getElementById('file_name').innerHTML = path;

if (media1Timer == null && media1.getCurrentPosition) {
Expand Down Expand Up @@ -190,7 +190,7 @@
console.log("Start recording...");
mediaRec.startRecord();

document.getElementById('play_caption').innerHTML = "<b>Recording in:<b>";
document.getElementById('play_caption').innerHTML = "Recording in:";
document.getElementById('file_name').innerHTML = recordSrc;

// Stop recording after 10 sec
Expand Down Expand Up @@ -250,10 +250,10 @@
<h1>Audio</h1>
<div id="info">
<table width="100%">
<tr><td id="play_caption"><b>Now playing:</b></td><td id="file_name">&nbsp;</td></tr>
<tr><td><b>Status:</b></td><td id="audio_status">&nbsp;</td></tr>
<tr><td><b>Duration:</b></td><td id="audio_duration"></td></tr>
<tr><td><b>Position:</b></td><td id="audio_position"></td></tr>
<tr><td id="play_caption">Now playing:</td><td id="file_name">&nbsp;</td></tr>
<tr><td>Status:</td><td id="audio_status">&nbsp;</td></tr>
<tr><td>Duration:</td><td id="audio_duration"></td></tr>
<tr><td>Position:</td><td id="audio_position"></td></tr>
</table>
</div>
<h2>Action</h2>
Expand Down
6 changes: 3 additions & 3 deletions example/www/calculator.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@

<h1>Calculator</h1>
<div id="info">
<b>X:</b> <span id="Span1"></span><br/>
<span class='tb-label'>X</span> <span id="Span1"></span>
<input type="text" id="x" value="1" style="width:250px;height:20px;"/>
<br/>
<b>Y:</b> <span id="Span2"></span><br/>
<span class='tb-label'>Y</span> <span id="Span2"></span>
<input type="text" id="y" value="2" style="width:250px;height:20px;"/>
<br/>
<b>Sum:</b> <span id="res"></span>
Sum: <span id="res"></span>
</div>
<h2>Action</h2>
<a href="#" class="btn large" onclick="calculateSum();">Calculate</a>
Expand Down
2 changes: 1 addition & 1 deletion example/www/camera.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

<h1>Camera</h1>
<div id="info">
<b>Status:</b> <span id="camera_status"></span><br>
Status: <span id="camera_status"></span><br>
<img style="width:120px;height:120px;visibility:hidden;display:none;" id="camera_image" src="" />
</div>
<h2>Action</h2>
Expand Down
2 changes: 1 addition & 1 deletion example/www/capture.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@

<h1>Capture</h1>
<div id="info">
<b>Status:</b> <span id="capture_status"></span><br/>
Status: <span id="capture_status"></span><br/>
<img style="width:120px;height:120px;visibility:hidden;display:none;" id="camera_image" src="" />
<audio style="visibility:hidden;display:none;" id="audio_player" src="" controls />
<video style="visibility:hidden;display:none;" width="150" height="150" id="video_player" src=""
Expand Down
4 changes: 2 additions & 2 deletions example/www/compass.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<!-- meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=2.0, maximum-scale=4.0, minimum-scale=1.0" / -->
Expand Down Expand Up @@ -133,7 +133,7 @@

<h1>Compass</h1>
<div id="info">
<b>Status:</b> <span id="compass_status">Stopped</span>
Status: <span id="compass_status">Stopped</span>
<table width="100%"><tr>
<td width="33%">Heading: <span id="compassHeading">&nbsp;</td>
</tr></table>
Expand Down
4 changes: 2 additions & 2 deletions example/www/contacts.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<!-- meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=2.0, maximum-scale=4.0, minimum-scale=1.0" / -->
Expand Down Expand Up @@ -151,7 +151,7 @@

<h1>Contacts</h1>
<div id="info">
<b>Results:</b><br>
Results:<br>
<span id="contacts_results">&nbsp;</span>
</div>
<h2>Action</h2>
Expand Down
6 changes: 3 additions & 3 deletions example/www/events.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE HTML>
<!DOCTYPE HTML>
<html>
<head>
<!-- meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=2.0, maximum-scale=4.0, minimum-scale=1.0" / -->
Expand Down Expand Up @@ -124,7 +124,7 @@

<h1>Events</h1>
<div id="info">
<b>Results:</b><br>
Results:<br>
<span id="results"></span>
</div>

Expand All @@ -136,6 +136,6 @@ <h2>Action</h2>
<div class="btn large" onclick="document.addEventListener('searchbutton', interceptSearchbutton, false);">Intercept searchbutton</div>
<div class="btn large" onclick="document.removeEventListener('searchbutton', interceptSearchbutton, false);">Stop intercept of searchbutton</div>
<div/>
<div onclick="goBack()" class="backBtn">Back</div>
<a href="index.html" class="backBtn">Back</a>
</body>
</html>
8 changes: 4 additions & 4 deletions example/www/file.html
Original file line number Diff line number Diff line change
Expand Up @@ -253,16 +253,16 @@

<h1>File</h1>
<div id="info">
<b>Enter file/directory name here:</b> <span id="Span1"></span><br/>
<span class='tb-label'>Enter file/directory name here:</span> <span id="Span1"></span>
<input type="text" id="filePath" style="width:250px;height:20px;"/>
<br/>
<b>Enter text to write in file :</b> <span id="Span2"></span><br/>
<span class='tb-label'>Enter text to write in file :</span> <span id="Span2"></span>
<input type="text" id="textToWrite" style="width:250px;height:20px;"/>
<br/>
<b>Enter URL to upload file to: </b> <span id="Span3"></span><br/>
<span class='tb-label'>Enter URL to upload file to: </span> <span id="Span3"></span>
<input type="text" id="server" value='http://posttestserver.com/post.php?dir=phonegapTest' style="width:250px;height:20px;"/>
<br/>
<b>Result:</b> <span id="file_status"></span>
Result: <span id="file_status"></span>
</div>
<h2>Action</h2>
<a href="#" class="btn large" onclick="createOrOpen(true);">Create/Open file</a>
Expand Down
Loading

0 comments on commit b0995fb

Please sign in to comment.