jellyfin-web/dashboard-ui/scripts/aboutpage.js

12 lines
305 B
JavaScript
Raw Normal View History

(function ($, document, apiClient) {
2013-03-14 19:42:18 -07:00
2013-04-01 08:59:56 -07:00
$(document).on('pageshow', "#aboutPage", function () {
2013-03-14 19:42:18 -07:00
2013-04-01 08:59:56 -07:00
var page = this;
apiClient.getSystemInfo().done(function(info) {
2013-04-01 08:59:56 -07:00
$('#appVersionNumber', page).html(info.Version);
});
});
2013-03-14 19:42:18 -07:00
})(jQuery, document, ApiClient);