2018-05-27 23:48:53 +02:00
|
|
|
// @author rubenwardy
|
|
|
|
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
$("#type").change(function() {
|
|
|
|
$(".not_mod, .not_game, .not_txp").show()
|
|
|
|
$(".not_" + this.value.toLowerCase()).hide()
|
|
|
|
})
|
|
|
|
$(".not_mod, .not_game, .not_txp").show()
|
|
|
|
$(".not_" + $("#type").val().toLowerCase()).hide()
|
2018-12-22 13:05:17 +01:00
|
|
|
|
|
|
|
$("#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");
|
|
|
|
}
|
|
|
|
});
|
2018-05-27 23:48:53 +02:00
|
|
|
})
|