jellyfin-web/dashboard-ui/scripts/aboutpage.js
2013-04-01 11:59:56 -04:00

12 lines
283 B
JavaScript

(function ($, document) {
$(document).on('pageshow', "#aboutPage", function () {
var page = this;
ApiClient.getSystemInfo().done(function(info) {
$('#appVersionNumber', page).html(info.Version);
});
});
})(jQuery, document);