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

12 lines
288 B
JavaScript
Raw Normal View History

2014-10-15 23:26:39 -04:00
(function ($, document) {
2013-03-14 21:42:18 -05:00
2015-05-19 15:15:40 -04:00
$(document).on('pageshowready', "#aboutPage", function () {
2013-03-14 21:42:18 -05:00
2013-04-01 11:59:56 -04:00
var page = this;
2014-10-25 14:32:58 -04:00
var elem = $('#appVersionNumber', page);
2014-04-05 11:02:50 -04:00
2014-10-25 14:32:58 -04:00
elem.html(elem.html().replace('{0}', ConnectionManager.appVersion()));
2013-04-01 11:59:56 -04:00
});
2013-03-14 21:42:18 -05:00
2014-10-15 23:26:39 -04:00
})(jQuery, document);