Skip to content

Commit

Permalink
corrected button clicking in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Steen committed Oct 22, 2020
1 parent db0a882 commit 3038044
Showing 1 changed file with 15 additions and 24 deletions.
39 changes: 15 additions & 24 deletions js/inputoutput.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,9 @@ $(document).ready(function() {
$("#constraints").val('')
$("#output").val('x & y')
$('#radio-out1').click()
if ($('#checkbox-constrained').prop("checked", true)) {
if ($('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", true)) {
$('#checkbox-preferred-output').click()
}
});
$("#example2button").click(function(){
$("input[type=text]").removeClass("is-invalid")
Expand All @@ -307,12 +304,9 @@ $(document).ready(function() {
$("#constraints").val('')
$("#output").val('x')
$('#radio-out2').click()
if ($('#checkbox-constrained').prop("checked", true)) {
if ($('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", true)) {
$('#checkbox-preferred-output').click()
}
});
$("#example3button").click(function(){
$("input[type=text]").removeClass("is-invalid")
Expand All @@ -321,12 +315,9 @@ $(document).ready(function() {
$("#constraints").val('')
$("#output").val('z')
$('#radio-out3').click()
if ($('#checkbox-constrained').prop("checked", true)) {
if ($('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", true)) {
$('#checkbox-preferred-output').click()
}
});
$("#example4button").click(function(){
$("input[type=text]").removeClass("is-invalid")
Expand All @@ -335,10 +326,10 @@ $(document).ready(function() {
$("#constraints").val('~helping')
$("#output").val('')
$('#radio-out3').click()
if ($('#checkbox-constrained').prop("checked", false)) {
if (!$('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", true)) {
if ($('#checkbox-preferred-output').prop("checked")) {
$('#checkbox-preferred-output').click()
}
});
Expand All @@ -349,10 +340,10 @@ $(document).ready(function() {
$("#constraints").val('killing')
$("#output").val('')
$('#radio-out1').click()
if ($('#checkbox-constrained').prop("checked", false)) {
if (!$('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", true)) {
if ($('#checkbox-preferred-output').prop("checked")) {
$('#checkbox-preferred-output').click()
}
});
Expand All @@ -363,10 +354,10 @@ $(document).ready(function() {
$("#constraints").val('')
$("#output").val('')
$('#radio-out1').click()
if ($('#checkbox-constrained').prop("checked", false)) {
if (!$('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", true)) {
if ($('#checkbox-preferred-output').prop("checked")) {
$('#checkbox-preferred-output').click()
}
});
Expand All @@ -376,10 +367,10 @@ $(document).ready(function() {
$("#norms").val('(T,cityA)\n(T,cityB)\n(T,cityC)')
$("#constraints").val('(~cityA|(~cityB|~cityC)),(~cityA|~cityB)')
$("#output").val('')
if ($('#checkbox-constrained').prop("checked", false)) {
if (!$('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", false)) {
if (!$('#checkbox-preferred-output').prop("checked")) {
$('#checkbox-preferred-output').click()
}
});
Expand All @@ -390,10 +381,10 @@ $(document).ready(function() {
$("#constraints").val('dataset')
$("#output").val('')
$('#radio-out3').click()
if ($('#checkbox-constrained').prop("checked", false)) {
if (!$('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", false)) {
if (!$('#checkbox-preferred-output').prop("checked")) {
$('#checkbox-preferred-output').click()
}
});
Expand All @@ -404,10 +395,10 @@ $(document).ready(function() {
$("#constraints").val('')
$("#output").val('')
$('#radio-out3').click()
if ($('#checkbox-constrained').prop("checked", false)) {
if (!$('#checkbox-constrained').prop("checked")) {
$('#checkbox-constrained').click()
}
if ($('#checkbox-preferred-output').prop("checked", false)) {
if (!$('#checkbox-preferred-output').prop("checked")) {
$('#checkbox-preferred-output').click()
}
});
Expand Down

0 comments on commit 3038044

Please sign in to comment.