eslint
This commit is contained in:
parent
1599bc4c14
commit
951afc669f
|
@ -29,7 +29,9 @@ function processClicks(event, field, value, row, $element) {
|
||||||
function detailFormatter(index, row, $detail) {
|
function detailFormatter(index, row, $detail) {
|
||||||
$detail.html('Please wait. Loading from ajax request...');
|
$detail.html('Please wait. Loading from ajax request...');
|
||||||
$j.get(thisUrl + '?request=stats&eid=' + row.EventId + '&fid=' + row.FrameId + '&row=' + index)
|
$j.get(thisUrl + '?request=stats&eid=' + row.EventId + '&fid=' + row.FrameId + '&row=' + index)
|
||||||
.done(function(data){ $detail.html(data.html) })
|
.done(function(data) {
|
||||||
|
$detail.html(data.html)
|
||||||
|
})
|
||||||
.fail(function(jqxhr, textStatus, error) {
|
.fail(function(jqxhr, textStatus, error) {
|
||||||
console.log("Request Failed: " + textStatus + ", " + error);
|
console.log("Request Failed: " + textStatus + ", " + error);
|
||||||
console.log("Response Text: " + jqxhr.responseText);
|
console.log("Response Text: " + jqxhr.responseText);
|
||||||
|
|
Loading…
Reference in New Issue