mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-06 09:23:57 +03:00
7 lines
No EOL
163 B
JavaScript
7 lines
No EOL
163 B
JavaScript
$.ajax({
|
|
url: "http://localhost:8080/api/get/version",
|
|
type: "GET",
|
|
success: function(data){
|
|
$("#program-version").text(data.message);
|
|
}
|
|
}) |