Service reminder implemented.
This commit is contained in:
@@ -5,6 +5,8 @@
|
||||
$('#page-match-status').html('<span class="label label-warning"><i class="fa fa-spinner fa-spin"></i> Matching In Progress</span> for ' + total + ' fuel logs. <strong>Keep page open until complete.</strong>');
|
||||
$('#page-match-status').after('<div class="progress progress-striped active"><div class="bar" style="width:0%"></div><div>');
|
||||
|
||||
$(".match-status a").addClass('pull-right');
|
||||
|
||||
submitNext();
|
||||
var unmatchedCount = 0;
|
||||
var errorCount = 0;
|
||||
@@ -41,10 +43,11 @@
|
||||
}
|
||||
$('.match-message', $row).text(result.Message);
|
||||
}
|
||||
|
||||
if (result.Action != undefined && result.Action != null) {
|
||||
$('.match-status', $row).append(" " + result.Action);
|
||||
var $action = $("a[matchcount]", $row);
|
||||
matchCountFunc.apply($action);
|
||||
$("a", $row).addClass('pull-right');
|
||||
matchCountFunc.apply($("a[matchcount]", $row));
|
||||
}
|
||||
|
||||
submitNext();
|
||||
|
||||
Reference in New Issue
Block a user