Files
jellyfin-web/dashboard-ui/scripts/aboutpage.js
T
Luke Pulverenti 89e0515a15 lazy load scripts
2015-05-16 15:09:02 -04:00

12 lines
284 B
JavaScript

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