Differences From Artifact [fb29748971]:
- File build/chrome/ui.js — part of check-in [e0f544bc9b] at 2016-03-09 04:48:56 on branch trunk — ChromeOS: Added list of readers detected to smartcard UI (user: rkeene, size: 2451) [annotate] [blame] [check-ins using]
To Artifact [8a7c575cc8]:
- File build/chrome/ui.js — part of check-in [e99cc9c924] at 2016-03-09 04:53:48 on branch trunk — ChromeOS: Updated to deal with the UI if the smartcard manager app isn't running (user: rkeene, size: 2491) [annotate] [blame] [check-ins using]
| ︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 95 | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | + + + + |
}
function updateSmartcardReaders(htmlObject) {
parentWindow.cackeyListReaders(function(readers) {
var idx;
var reader;
var resultHTML;
if (!readers) {
readers = [];
}
resultHTML = "Count: " + readers.length;
if (readers.length > 0) {
resultHTML += "<br>";
resultHTML += "<ol type=\"1\">";
|
| ︙ |