mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
12 lines
No EOL
288 B
JavaScript
12 lines
No EOL
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); |