You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have had problems with my secret keys. I am running Ubuntu 16.04 LTS with firefox 57.0.1. The last digit of my secret key was partially obscured by the text box. I did not find this out until I wanted to transfer some ripple. I eventually ran through all potential values of the last digit of the key and had success.
I created some more secret keys and found that they sometimes had the same problem.
I did some work with the code and found a possible solution. I would not like this to happen to anyone else.
** complete noob to github, so please excuse they way I am doing this. I probably should create a pull request but haven't figured it all out yet.
original code: (index.html)
line 16 input[type="text"] { width: 240px; }
line 17 input[type="text"].wide { width: 280px; }
line 18 input[type="text"].narrow { width: 120px; }
modified code: (index.html)
line 16 input[type="text"] { width: 280px; } //change
line 17 input[type="text"].wide { width: 280px; }
line 18 input[type="text"].narrow { width: 120px; }
or alternatively call .wide
Thanks
The text was updated successfully, but these errors were encountered:
Can confirm same problem using Firefox on OSX. Secret key text box is too short to display the last digit. As the text within the box is not selectable either [for copy/paste] this is potentially error prone.
TIP: on OSX, you can click on & drag the secret key text directly from the browser window into a text document, to effectively copy/paste it in its entirety.
Hi, I have had problems with my secret keys. I am running Ubuntu 16.04 LTS with firefox 57.0.1. The last digit of my secret key was partially obscured by the text box. I did not find this out until I wanted to transfer some ripple. I eventually ran through all potential values of the last digit of the key and had success.
I created some more secret keys and found that they sometimes had the same problem.
I did some work with the code and found a possible solution. I would not like this to happen to anyone else.
** complete noob to github, so please excuse they way I am doing this. I probably should create a pull request but haven't figured it all out yet.
original code: (index.html)
line 16 input[type="text"] { width: 240px; }
line 17 input[type="text"].wide { width: 280px; }
line 18 input[type="text"].narrow { width: 120px; }
modified code: (index.html)
line 16 input[type="text"] { width: 280px; } //change
line 17 input[type="text"].wide { width: 280px; }
line 18 input[type="text"].narrow { width: 120px; }
or alternatively call .wide
Thanks
The text was updated successfully, but these errors were encountered: