mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
replaceState() changed to pushState()
so that the "Back" button works after clicking on "Raw text". (cherry picked from commit 47fae2b2467df2ab017102d82833cb380c286867)
This commit is contained in:
parent
fdc87a7fcf
commit
ecd2e067f8
@ -425,7 +425,7 @@ function stateExistingPaste() {
|
||||
*/
|
||||
function rawText()
|
||||
{
|
||||
history.replaceState(document.title, document.title, 'document.txt');
|
||||
history.pushState(document.title, document.title, 'document.txt');
|
||||
var paste = $('div#cleartext').text();
|
||||
var newDoc = document.open('text/plain', 'replace');
|
||||
newDoc.write(paste);
|
||||
|
Loading…
Reference in New Issue
Block a user