mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 02:48:19 -07:00
12 lines
283 B
JavaScript
12 lines
283 B
JavaScript
(function ($, document) {
|
|
|
|
$(document).on('pageshow', "#aboutPage", function () {
|
|
|
|
var page = this;
|
|
|
|
ApiClient.getSystemInfo().done(function(info) {
|
|
$('#appVersionNumber', page).html(info.Version);
|
|
});
|
|
});
|
|
|
|
})(jQuery, document); |