jellyfin-web/dashboard-ui/scripts/aboutpage.js
2014-10-25 14:32:58 -04:00

12 lines
283 B
JavaScript

(function ($, document) {
$(document).on('pageshow', "#aboutPage", function () {
var page = this;
var elem = $('#appVersionNumber', page);
elem.html(elem.html().replace('{0}', ConnectionManager.appVersion()));
});
})(jQuery, document);