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

update sat page

This commit is contained in:
Luke Pulverenti 2016-03-13 23:32:03 -04:00
parent db21e17a96
commit 139283e650
7 changed files with 107 additions and 14 deletions

View file

@ -60,6 +60,26 @@
return false;
});
$('#btnSelectPath', page).on("click.selectDirectory", function () {
require(['directorybrowser'], function (directoryBrowser) {
var picker = new directoryBrowser();
picker.show({
includeFiles: true,
callback: function (path) {
if (path) {
$('#txtDevicePath', page).val(path);
}
picker.close();
}
});
});
});
}).on('pageshow', "#liveTvTunerProviderM3UPage", function () {
var providerId = getParameterByName('id');