minor stuff
This commit is contained in:
parent
d6721a539d
commit
58eaf53c9c
2 changed files with 5 additions and 3 deletions
|
@ -138,8 +138,10 @@
|
|||
'username': settings.credentials.username,
|
||||
'password': (settings.credentials.authstring != "" ? MD5(MD5(settings.credentials.password) + settings.credentials.authstring) : "" )
|
||||
},
|
||||
'capabilities': {}
|
||||
'capabilities': {},
|
||||
'conversion': {'query': settings.settings.conversion.query}
|
||||
};
|
||||
console.log('sending data:',data);
|
||||
$.ajax(
|
||||
{
|
||||
'url': settings.server,
|
||||
|
@ -152,7 +154,7 @@
|
|||
'error': function(){},
|
||||
'success': function(d)
|
||||
{
|
||||
|
||||
console.log('receiving data:',d);
|
||||
var ret = $.extend(true,
|
||||
{
|
||||
"streams": {},
|
||||
|
|
|
@ -879,7 +879,7 @@
|
|||
|
||||
$('#page').append(
|
||||
$('<div>').attr('id', 'editserver').append(
|
||||
$('<label>').attr('for', 'stream-edit-name').text('name').append(
|
||||
$('<label>').attr('for', 'stream-edit-name').text('name [case insensitive, no special chars]').append(
|
||||
$('<input>').attr('type', 'text').attr('placeholder', 'NAME').attr('id', 'stream-edit-name').attr('value', sdata.name)
|
||||
)
|
||||
).append(
|
||||
|
|
Loading…
Add table
Reference in a new issue