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

15 lines
377 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;
2014-04-05 08:02:50 -07:00
apiClient.getSystemInfo().done(function (info) {
var elem = $('#appVersionNumber', page);
elem.html(elem.html().replace('{0}', info.Version));
2013-04-01 08:59:56 -07:00
});
});
2013-03-14 19:42:18 -07:00
})(jQuery, document, ApiClient);