1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00

Fixing the 'Mail this' feature

This commit is contained in:
sametmax
2015-05-10 19:46:30 +02:00
parent 9b84122414
commit 3a6e8a48fe
2 changed files with 4 additions and 7 deletions

View File

@@ -600,7 +600,7 @@
e.preventDefault(); e.preventDefault();
if (confirm("This picture is unique to your paste so you can identify" + if (confirm("This picture is unique to your paste so you can identify" +
" it quickly. \n\n Do you want to know more about this?")) { " it quickly. \n\n Do you want to know more about this?")) {
window.open("http://is.gd/IJaMRG", "_blank"); window.open("https://github.com/sametmax/VizHash.js", "_blank");
} }
}).prependTo('.lnk-option').append(vhash.canvas); }).prependTo('.lnk-option').append(vhash.canvas);
} }
@@ -890,11 +890,8 @@
}); });
/* Send the paste by email */ /* Send the paste by email */
$('#email-link').click(function() { $('#email-link').click(function(e) {
zerobin.getTinyURL(window.location.toString(), function(tinyurl) { e.target.href = 'mailto:friend@example.com?body=' + window.location.toString();
document.location.href= 'mailto:friend@example.com?body=' + tinyurl;
});
return false;
}); });

File diff suppressed because one or more lines are too long