jellyfin-web/dashboard-ui/scripts/aboutpage.js
2013-04-01 20:54:06 -04:00

12 lines
305 B
JavaScript

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