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

12 lines
283 B
JavaScript
Raw Normal View History

2014-10-15 20:26:39 -07:00
(function ($, document) {
2013-03-14 19:42:18 -07:00
2015-09-24 10:08:10 -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-10-25 11:32:58 -07:00
var elem = $('#appVersionNumber', page);
2014-04-05 08:02:50 -07:00
2014-10-25 11:32:58 -07:00
elem.html(elem.html().replace('{0}', ConnectionManager.appVersion()));
2013-04-01 08:59:56 -07:00
});
2013-03-14 19:42:18 -07:00
2014-10-15 20:26:39 -07:00
})(jQuery, document);