9 lines
No EOL
201 B
JavaScript
9 lines
No EOL
201 B
JavaScript
(function($) {
|
|
|
|
"use strict";
|
|
|
|
$("#language").change(function() {
|
|
$.get("/api/setlang/" + $(this).val() + "/").done(function() { document.location.reload(); });
|
|
});
|
|
|
|
})(jQuery); |