mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
15 lines
355 B
JavaScript
15 lines
355 B
JavaScript
(function ($, document) {
|
|
|
|
$(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); |