Changeset 44
- Timestamp:
- 07/25/06 13:36:15 (2 years ago)
- Files:
-
- 10kz/scripts/crypto-ui-injector.user.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
10kz/scripts/crypto-ui-injector.user.js
r43 r44 301 301 302 302 function pulldown_from_keys( x ) { 303 304 303 /* FIXME: handle no private keys case */ 305 304 /* FIXME: handle no local server / server error case */ … … 321 320 d.firstChild.childNodes[1].appendChild( document.createTextNode("Have you installed GPG?")); 322 321 injection_point.childNodes[1].appendChild( d ); 323 324 return log( "no keys found - inject install link here." );325 322 } 326 323 327 324 d.firstChild.appendChild( document.createTextNode(" Using GPG key: ")); 328 if( options.length > 1) {325 if( options.length > 0 ) { 329 326 /* for users with multiple keys, give them a select menu. */ 330 327 var key_info_ctrl;