How to Properly Transfer by cmd. line PGP Keys in a New Computer [e.g. Launchpad OpenPGP Key]
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
2
down vote
favorite
I would like to use my Launchpad PGP Key to access my Launchpad PPAs on 2 computers. To do it I need to transfer the key to the other Ubuntu computer. I did found very little support on Ubuntu specific websites so far.
Here is what I did on the original computer
:
$ gpg2 --fingerprint
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
pub rsa2048/245FD525 2016-12-16 [SC]
Key fingerprint = C64F 728F BF5D C5CE 357B D1AE FC8F 1C1C 245F D525
uid [ unknown] my_name <my_e-mail>
sub rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --list-secret-keys
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
sec rsa2048/245FD525 2016-12-16 [SC]
uid [ unknown] my_name <my_e-mail>
ssb rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Public-Key.asc
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Private-Key.asc
---> Enter secret passphrase
$
On the new computer
:
$ gpg2 --import Launchpad-GPG-Public-Key.asc
gpg: keybox '/home/ubuntu-xenial/user/.gnupg/pubring.kbx' created
gpg: /home/ubuntu-xenial/user/.gnupg/trustdb.gpg: trustdb created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1
$ gpg2 --import Launchpad-GPG-Private-Key.asc.asc
gpg: key 245FD525: "my_name <my_e-mail>" not changed
gpg: key 245FD525: secret key imported
gpg: Total number processed: 3
gpg: unchanged: 1
gpg: secret keys read: 3
gpg: secret keys imported: 2
$
$ gpg2 --edit-key 245FD525
gpg (GnuPG) 2.1.11; Copyright (C) 2016 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Secret key is available.
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
gpg> trust
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please decide how far you trust this user to correctly verify other users' keys
(by looking at passports, checking fingerprints from different sources, etc.)
1 = I don't know or won't say
2 = I do NOT trust
3 = I trust marginally
4 = I trust fully
5 = I trust ultimately
m = back to the main menu
Your decision? 5
Do you really want to set this key to ultimate trust? (y/N) y
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: ultimate validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please note that the shown key validity is not necessarily correct
unless you restart the program.
gpg> <Ctrl><D>
$
$ gpg --list-keys [user]
gpg: checking the trustdb
gpg: public key of ultimately trusted key 245FD525 not found
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: error reading key: public key not found
$
At this stage the process is still incomplete and I still can't use it to sign for uploading packages to my PPAs ...
command-line gnupg openpgp
add a comment |Â
up vote
2
down vote
favorite
I would like to use my Launchpad PGP Key to access my Launchpad PPAs on 2 computers. To do it I need to transfer the key to the other Ubuntu computer. I did found very little support on Ubuntu specific websites so far.
Here is what I did on the original computer
:
$ gpg2 --fingerprint
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
pub rsa2048/245FD525 2016-12-16 [SC]
Key fingerprint = C64F 728F BF5D C5CE 357B D1AE FC8F 1C1C 245F D525
uid [ unknown] my_name <my_e-mail>
sub rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --list-secret-keys
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
sec rsa2048/245FD525 2016-12-16 [SC]
uid [ unknown] my_name <my_e-mail>
ssb rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Public-Key.asc
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Private-Key.asc
---> Enter secret passphrase
$
On the new computer
:
$ gpg2 --import Launchpad-GPG-Public-Key.asc
gpg: keybox '/home/ubuntu-xenial/user/.gnupg/pubring.kbx' created
gpg: /home/ubuntu-xenial/user/.gnupg/trustdb.gpg: trustdb created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1
$ gpg2 --import Launchpad-GPG-Private-Key.asc.asc
gpg: key 245FD525: "my_name <my_e-mail>" not changed
gpg: key 245FD525: secret key imported
gpg: Total number processed: 3
gpg: unchanged: 1
gpg: secret keys read: 3
gpg: secret keys imported: 2
$
$ gpg2 --edit-key 245FD525
gpg (GnuPG) 2.1.11; Copyright (C) 2016 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Secret key is available.
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
gpg> trust
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please decide how far you trust this user to correctly verify other users' keys
(by looking at passports, checking fingerprints from different sources, etc.)
1 = I don't know or won't say
2 = I do NOT trust
3 = I trust marginally
4 = I trust fully
5 = I trust ultimately
m = back to the main menu
Your decision? 5
Do you really want to set this key to ultimate trust? (y/N) y
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: ultimate validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please note that the shown key validity is not necessarily correct
unless you restart the program.
gpg> <Ctrl><D>
$
$ gpg --list-keys [user]
gpg: checking the trustdb
gpg: public key of ultimately trusted key 245FD525 not found
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: error reading key: public key not found
$
At this stage the process is still incomplete and I still can't use it to sign for uploading packages to my PPAs ...
command-line gnupg openpgp
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I would like to use my Launchpad PGP Key to access my Launchpad PPAs on 2 computers. To do it I need to transfer the key to the other Ubuntu computer. I did found very little support on Ubuntu specific websites so far.
Here is what I did on the original computer
:
$ gpg2 --fingerprint
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
pub rsa2048/245FD525 2016-12-16 [SC]
Key fingerprint = C64F 728F BF5D C5CE 357B D1AE FC8F 1C1C 245F D525
uid [ unknown] my_name <my_e-mail>
sub rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --list-secret-keys
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
sec rsa2048/245FD525 2016-12-16 [SC]
uid [ unknown] my_name <my_e-mail>
ssb rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Public-Key.asc
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Private-Key.asc
---> Enter secret passphrase
$
On the new computer
:
$ gpg2 --import Launchpad-GPG-Public-Key.asc
gpg: keybox '/home/ubuntu-xenial/user/.gnupg/pubring.kbx' created
gpg: /home/ubuntu-xenial/user/.gnupg/trustdb.gpg: trustdb created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1
$ gpg2 --import Launchpad-GPG-Private-Key.asc.asc
gpg: key 245FD525: "my_name <my_e-mail>" not changed
gpg: key 245FD525: secret key imported
gpg: Total number processed: 3
gpg: unchanged: 1
gpg: secret keys read: 3
gpg: secret keys imported: 2
$
$ gpg2 --edit-key 245FD525
gpg (GnuPG) 2.1.11; Copyright (C) 2016 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Secret key is available.
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
gpg> trust
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please decide how far you trust this user to correctly verify other users' keys
(by looking at passports, checking fingerprints from different sources, etc.)
1 = I don't know or won't say
2 = I do NOT trust
3 = I trust marginally
4 = I trust fully
5 = I trust ultimately
m = back to the main menu
Your decision? 5
Do you really want to set this key to ultimate trust? (y/N) y
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: ultimate validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please note that the shown key validity is not necessarily correct
unless you restart the program.
gpg> <Ctrl><D>
$
$ gpg --list-keys [user]
gpg: checking the trustdb
gpg: public key of ultimately trusted key 245FD525 not found
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: error reading key: public key not found
$
At this stage the process is still incomplete and I still can't use it to sign for uploading packages to my PPAs ...
command-line gnupg openpgp
I would like to use my Launchpad PGP Key to access my Launchpad PPAs on 2 computers. To do it I need to transfer the key to the other Ubuntu computer. I did found very little support on Ubuntu specific websites so far.
Here is what I did on the original computer
:
$ gpg2 --fingerprint
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
pub rsa2048/245FD525 2016-12-16 [SC]
Key fingerprint = C64F 728F BF5D C5CE 357B D1AE FC8F 1C1C 245F D525
uid [ unknown] my_name <my_e-mail>
sub rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --list-secret-keys
/home/ubuntu-xenial/user/.gnupg/pubring.kbx
--------------------------------------------
sec rsa2048/245FD525 2016-12-16 [SC]
uid [ unknown] my_name <my_e-mail>
ssb rsa2048/4D0AABD3 2016-12-16 [E]
$
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Public-Key.asc
$ gpg2 --export -a 245FD525 > Launchpad-GPG-Private-Key.asc
---> Enter secret passphrase
$
On the new computer
:
$ gpg2 --import Launchpad-GPG-Public-Key.asc
gpg: keybox '/home/ubuntu-xenial/user/.gnupg/pubring.kbx' created
gpg: /home/ubuntu-xenial/user/.gnupg/trustdb.gpg: trustdb created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1
$ gpg2 --import Launchpad-GPG-Private-Key.asc.asc
gpg: key 245FD525: "my_name <my_e-mail>" not changed
gpg: key 245FD525: secret key imported
gpg: Total number processed: 3
gpg: unchanged: 1
gpg: secret keys read: 3
gpg: secret keys imported: 2
$
$ gpg2 --edit-key 245FD525
gpg (GnuPG) 2.1.11; Copyright (C) 2016 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Secret key is available.
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
gpg> trust
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: unknown validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please decide how far you trust this user to correctly verify other users' keys
(by looking at passports, checking fingerprints from different sources, etc.)
1 = I don't know or won't say
2 = I do NOT trust
3 = I trust marginally
4 = I trust fully
5 = I trust ultimately
m = back to the main menu
Your decision? 5
Do you really want to set this key to ultimate trust? (y/N) y
sec rsa2048/245FD525
created: 2016-12-16 expires: never usage: SC
trust: ultimate validity: unknown
ssb rsa2048/4D0AABD3
created: 2016-12-16 expires: never usage: E
[ unknown] (1). my_name <my_e-mail>
Please note that the shown key validity is not necessarily correct
unless you restart the program.
gpg> <Ctrl><D>
$
$ gpg --list-keys [user]
gpg: checking the trustdb
gpg: public key of ultimately trusted key 245FD525 not found
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: error reading key: public key not found
$
At this stage the process is still incomplete and I still can't use it to sign for uploading packages to my PPAs ...
command-line gnupg openpgp
command-line gnupg openpgp
edited Mar 5 at 21:46
asked Mar 5 at 2:38
Antonio
7562917
7562917
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
After running through my notes when I originally created the PGP Key some years ago I found this answer on Ask Ubuntu:
$ gpg --keyserver keyserver.ubuntu.com --recv-keys 245FD525
gpg: requesting key 245FD525 from hkp server keyserver.ubuntu.com
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --no-default-keyring -a --export 245FD525 | gpg --no-default-keyring --keyring ~/.gnupg/trustedkeys.gpg --import -
gpg: keyring `/home/ubuntu-xenial/[user]/.gnupg/trustedkeys.gpg' created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --list-keys [user]
pub 2048R/245FD525 2016-12-16
uid my_name <my_e-mail>
sub 2048R/4D0AABD3 2016-12-16
$
Now I can use my Launchpad PGP Key on the other computer.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
After running through my notes when I originally created the PGP Key some years ago I found this answer on Ask Ubuntu:
$ gpg --keyserver keyserver.ubuntu.com --recv-keys 245FD525
gpg: requesting key 245FD525 from hkp server keyserver.ubuntu.com
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --no-default-keyring -a --export 245FD525 | gpg --no-default-keyring --keyring ~/.gnupg/trustedkeys.gpg --import -
gpg: keyring `/home/ubuntu-xenial/[user]/.gnupg/trustedkeys.gpg' created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --list-keys [user]
pub 2048R/245FD525 2016-12-16
uid my_name <my_e-mail>
sub 2048R/4D0AABD3 2016-12-16
$
Now I can use my Launchpad PGP Key on the other computer.
add a comment |Â
up vote
1
down vote
accepted
After running through my notes when I originally created the PGP Key some years ago I found this answer on Ask Ubuntu:
$ gpg --keyserver keyserver.ubuntu.com --recv-keys 245FD525
gpg: requesting key 245FD525 from hkp server keyserver.ubuntu.com
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --no-default-keyring -a --export 245FD525 | gpg --no-default-keyring --keyring ~/.gnupg/trustedkeys.gpg --import -
gpg: keyring `/home/ubuntu-xenial/[user]/.gnupg/trustedkeys.gpg' created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --list-keys [user]
pub 2048R/245FD525 2016-12-16
uid my_name <my_e-mail>
sub 2048R/4D0AABD3 2016-12-16
$
Now I can use my Launchpad PGP Key on the other computer.
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
After running through my notes when I originally created the PGP Key some years ago I found this answer on Ask Ubuntu:
$ gpg --keyserver keyserver.ubuntu.com --recv-keys 245FD525
gpg: requesting key 245FD525 from hkp server keyserver.ubuntu.com
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --no-default-keyring -a --export 245FD525 | gpg --no-default-keyring --keyring ~/.gnupg/trustedkeys.gpg --import -
gpg: keyring `/home/ubuntu-xenial/[user]/.gnupg/trustedkeys.gpg' created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --list-keys [user]
pub 2048R/245FD525 2016-12-16
uid my_name <my_e-mail>
sub 2048R/4D0AABD3 2016-12-16
$
Now I can use my Launchpad PGP Key on the other computer.
After running through my notes when I originally created the PGP Key some years ago I found this answer on Ask Ubuntu:
$ gpg --keyserver keyserver.ubuntu.com --recv-keys 245FD525
gpg: requesting key 245FD525 from hkp server keyserver.ubuntu.com
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --no-default-keyring -a --export 245FD525 | gpg --no-default-keyring --keyring ~/.gnupg/trustedkeys.gpg --import -
gpg: keyring `/home/ubuntu-xenial/[user]/.gnupg/trustedkeys.gpg' created
gpg: key 245FD525: public key "my_name <my_e-mail>" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
$ gpg --list-keys [user]
pub 2048R/245FD525 2016-12-16
uid my_name <my_e-mail>
sub 2048R/4D0AABD3 2016-12-16
$
Now I can use my Launchpad PGP Key on the other computer.
edited Mar 5 at 2:48
muru
130k19274467
130k19274467
answered Mar 5 at 2:38
Antonio
7562917
7562917
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1011947%2fhow-to-properly-transfer-by-cmd-line-pgp-keys-in-a-new-computer-e-g-launchpad%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password