Lines 26-32
function tester_submit() {
Link Here
|
26 |
statusCode: { |
26 |
statusCode: { |
27 |
200: function (response) { |
27 |
200: function (response) { |
28 |
$("#tester_error").html("").css("display", "none"); |
28 |
$("#tester_error").html("").css("display", "none"); |
29 |
$.each(response, function (key, val) { |
29 |
$.each(response[0], function (key, val) { |
30 |
if (key === "hardduedate") { |
30 |
if (key === "hardduedate") { |
31 |
var compare; |
31 |
var compare; |
32 |
switch (response.hardduedatecompare) { |
32 |
switch (response.hardduedatecompare) { |
33 |
- |
|
|