update qsv encoding

This commit is contained in:
Luke Pulverenti 2015-11-22 15:46:02 -05:00
parent 62b528a41c
commit e92784271b
5 changed files with 30 additions and 26 deletions

View file

@ -11,7 +11,12 @@
var url = 'Videos/' + currentItem.Id + '/Subtitles/' + index;
$.get(ApiClient.getUrl(url)).done(function (result) {
ApiClient.ajax({
type: 'GET',
url: url
}).then(function (result) {
$('.subtitleContent', page).html(result);