Service reminder implemented.

This commit is contained in:
2015-10-21 20:32:37 -04:00
parent e42fcd16fa
commit 93065de77f
26 changed files with 652 additions and 89 deletions
+5 -2
View File
@@ -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();