jellyfin-web/dashboard-ui/scripts/aboutpage.js
2015-05-19 15:15:40 -04:00

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);