parent
e0579ad7c3
commit
6982240326
|
@ -202,6 +202,7 @@ button#createScript{
|
|||
</div>
|
||||
<div class="modal-body">
|
||||
<p id="scriptInfo3"></p>
|
||||
<input class="input" id="target-url3" name="target-url" type="url" value="http://">
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-primary"
|
||||
|
|
|
@ -44,7 +44,7 @@ function startRecording() {
|
|||
else {
|
||||
server.fileName = data.server.fileName;
|
||||
$('#scriptInfo3').text($.i18n.prop("stopRecordingMessage"));
|
||||
var url = $('#target-url2').val();
|
||||
var url = $('#target-url3').val();
|
||||
window.open(url);
|
||||
$('#stopRecording').attr('disabled', false);
|
||||
$('#startRecording').attr('disabled', true);
|
||||
|
@ -115,6 +115,7 @@ function testRecordProxy() {
|
|||
if (data.success) {
|
||||
$('#mySecondModal').modal('hide');
|
||||
$('#myThirdModal').modal('show');
|
||||
$("#target-url3").val($("#target-url2").val());
|
||||
$('#scriptInfo3').text(
|
||||
$.i18n.prop("startRecordingMessage"));
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue