mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
50 lines
931 B
HTML
50 lines
931 B
HTML
<!--
|
|
* PhoneGap is available under *either* the terms of the modified BSD license *or* the
|
|
* MIT License (2008). See http://opensource.org/licenses/alphabetical for full text.
|
|
*
|
|
* Copyright (c) 2011, IBM Corporation
|
|
*
|
|
-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title>PhoneGap BarcodeScanner device test app</title>
|
|
<script src="cordova-1.5.0.js"></script>
|
|
<script src="barcodescanner.js"></script>
|
|
<script src="image-data.json.js"></script>
|
|
<script src="phonegap-app.js"></script>
|
|
<style>
|
|
button {
|
|
font-size: 120%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="onLoad()">
|
|
|
|
<div id="running-bits">
|
|
|
|
<button id="scan-button">scan: ?</button>
|
|
|
|
<p>(<span id="test-count-current">?</span>
|
|
/
|
|
<span id="test-count-total">?</span>)
|
|
|
|
<p><img id="image" src="">
|
|
|
|
<p>expected text:
|
|
<br><tt><span id="test-text">?</span></tt>
|
|
|
|
</div>
|
|
|
|
<p><b id="test-done"></b>
|
|
<br><button id="start-over">start over</button>
|
|
|
|
<p>Results:
|
|
<ul id="results-list">
|
|
</ul>
|
|
|
|
</body>
|
|
|
|
</html> |