Allow pasting of forum URLs in input box

This commit is contained in:
rubenwardy 2018-12-22 12:05:17 +00:00
parent 692628653c
commit a25f77ce3c
1 changed files with 13 additions and 0 deletions

View File

@ -8,4 +8,17 @@ $(function() {
})
$(".not_mod, .not_game, .not_txp").show()
$(".not_" + $("#type").val().toLowerCase()).hide()
$("#forums").on('paste', function(e) {
try {
var pasteData = e.originalEvent.clipboardData.getData('text')
var url = new URL(pasteData);
if (url.hostname == "forum.minetest.net") {
$(this).val(url.searchParams.get("t"));
e.preventDefault();
}
} catch (e) {
console.log("Not a URL");
}
});
})