Differences From Artifact [02acf47905]:
- File build/chrome/ui.js — part of check-in [833f48f854] at 2016-02-29 04:32:16 on branch trunk — ChromeOS: Added certificate usage information to bare UI (user: rkeene, size: 1225) [annotate] [blame] [check-ins using]
To Artifact [213cbbd233]:
- File build/chrome/ui.js — part of check-in [b276afc558] at 2016-02-29 16:50:34 on branch trunk — ChromeOS: Updated to call a failure callback if PCSC connection fails (user: rkeene, size: 1365) [annotate] [blame] [check-ins using]
︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | + + + + + + + + | if (globalCerts == null) { htmlObject.innerHTML = "<i>Updating...</i>"; } else { displayCerts(htmlObject, globalCerts); } parentWindow.cackeyListCertificates(function(certs) { /* * If there is an error then we are invoked with no certs * parameter at all, fake one. */ if (!certs) { certs = []; } globalCerts = certs; displayCerts(htmlObject, certs); }); return; } |
︙ |