1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

added oga, webma to audio streaming url

This commit is contained in:
Luke Pulverenti 2013-04-01 20:54:06 -04:00
parent 51e8bf14c7
commit e4a3d35a5f
6 changed files with 40 additions and 9 deletions

View file

@ -1,12 +1,12 @@
(function ($, document) {
(function ($, document, apiClient) {
$(document).on('pageshow', "#aboutPage", function () {
var page = this;
ApiClient.getSystemInfo().done(function(info) {
apiClient.getSystemInfo().done(function(info) {
$('#appVersionNumber', page).html(info.Version);
});
});
})(jQuery, document);
})(jQuery, document, ApiClient);