mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-27 07:04:24 +00:00
UI change to hide secret key with toggle button
This commit is contained in:
parent
ecc498967e
commit
e3be6b83db
@ -40,7 +40,12 @@ function initProfileEdit() {
|
||||
loadProfileForEdit();
|
||||
|
||||
dumpPrivkey(defaultScreenName, function(args, key) {
|
||||
$(".secret-key-container").hide();
|
||||
$(".secret-key").text(key);
|
||||
|
||||
$(".toggle-priv-key").click(function () {
|
||||
$(".secret-key-container").fadeToggle();
|
||||
});
|
||||
}, {});
|
||||
});
|
||||
}
|
||||
|
@ -84,11 +84,12 @@
|
||||
<input type="text" class="input-website" placeholder="website"/>
|
||||
</div>
|
||||
<div class="profile-edition-buttons">
|
||||
<button class="toggle-priv-key" style="float: left" href="#">Secret Key</button>
|
||||
<button class="cancel-changes" href="#">Cancel</button>
|
||||
<button class="submit-changes" href="#">Save Changes</button>
|
||||
</div>
|
||||
|
||||
<div style="font-size:80%;text-align: center;">
|
||||
<div style="font-size:80%;text-align: center;" class="secret-key-container">
|
||||
Secret key: <span class="secret-key"></span>
|
||||
</div>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user