pull/608/head
parent
31fea55ee4
commit
67c833d2bc
@ -0,0 +1,16 @@
|
|||||||
|
$(document).ready(function() {
|
||||||
|
function toggle() {
|
||||||
|
if ($('input[name="application-fetch_backend"]:checked').val() != 'html_requests') {
|
||||||
|
$('#requests-override-options').hide();
|
||||||
|
$('#webdriver-override-options').show();
|
||||||
|
} else {
|
||||||
|
$('#requests-override-options').show();
|
||||||
|
$('#webdriver-override-options').hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$('input[name="application-fetch_backend"]').click(function (e) {
|
||||||
|
toggle();
|
||||||
|
});
|
||||||
|
toggle();
|
||||||
|
|
||||||
|
});
|
Loading…
Reference in new issue