|
@@ -1351,8 +1351,7 @@ $(document).bind('fatalError.jingle',
|
1351
|
1351
|
function callSipButtonClicked()
|
1352
|
1352
|
{
|
1353
|
1353
|
$.prompt('<h2>Enter SIP number</h2>' +
|
1354
|
|
- '<input id="sipNumber" type="text"' +
|
1355
|
|
- ' value="' + config.defaultSipNumber + '" autofocus>',
|
|
1354
|
+ '<input id="sipNumber" type="text" value="" autofocus>',
|
1356
|
1355
|
{
|
1357
|
1356
|
persistent: false,
|
1358
|
1357
|
buttons: { "Dial": true, "Cancel": false},
|
|
@@ -1366,7 +1365,7 @@ function callSipButtonClicked()
|
1366
|
1365
|
if (v)
|
1367
|
1366
|
{
|
1368
|
1367
|
var numberInput = document.getElementById('sipNumber');
|
1369
|
|
- if (numberInput.value)
|
|
1368
|
+ if (numberInput.value && numberInput.value.length)
|
1370
|
1369
|
{
|
1371
|
1370
|
connection.rayo.dial(
|
1372
|
1371
|
numberInput.value, 'fromnumber', roomName);
|