s4
s4 copied to clipboard
Decrypt does not work when running from disk
You can get it to work by opening the file in a text editor, search for <div id="decryptInputs"> and make sure the content of the div is empty : <div id="decryptInputs"></div>. In your case you probably have textarea inside the div.
The original file has the div empty and the javascript adds the required number of boxes and while doing so, it register an event handler to decrypt every time the text changes. When saving, the existing the text boxes are saved and since they already exist the event handlers are not registered.