1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/scripts/aboutpage.js
2015-05-16 15:09:02 -04:00

12 lines
No EOL
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);