mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
(function ($, document) {
|
|
|
|
$(document).on('pageshowready', "#aboutPage", function () {
|
|
|
|
var page = this;
|
|
|
|
var elem = $('#appVersionNumber', page);
|
|
|
|
elem.html(elem.html().replace('{0}', ConnectionManager.appVersion()));
|
|
});
|
|
|
|
})(jQuery, document); |