mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
15 lines
No EOL
377 B
JavaScript
15 lines
No EOL
377 B
JavaScript
(function ($, document, apiClient) {
|
|
|
|
$(document).on('pageshow', "#aboutPage", function () {
|
|
|
|
var page = this;
|
|
|
|
apiClient.getSystemInfo().done(function (info) {
|
|
|
|
var elem = $('#appVersionNumber', page);
|
|
|
|
elem.html(elem.html().replace('{0}', info.Version));
|
|
});
|
|
});
|
|
|
|
})(jQuery, document, ApiClient); |