JourneyJoker/static/frontend/js/language.js
2021-06-14 06:06:32 +02:00

9 lines
No EOL
201 B
JavaScript

(function($) {
"use strict";
$("#language").change(function() {
$.get("/api/setlang/" + $(this).val() + "/").done(function() { document.location.reload(); });
});
})(jQuery);