diff --git a/templates/user/dashboard.html b/templates/user/dashboard.html
index 0e2b718..eb147b0 100644
--- a/templates/user/dashboard.html
+++ b/templates/user/dashboard.html
@@ -175,29 +175,6 @@
-
-
@@ -305,10 +282,11 @@ document.getElementById('site-list').addEventListener('click', function(e) {
/* Mark Checked */
if (btn.classList.contains('js-check')) {
- document.getElementById('check-modal-title').textContent = 'Mark Checked — ' + btn.dataset.name;
- document.getElementById('check-form').action = '/dashboard/check/' + btn.dataset.id;
- document.getElementById('check-note').value = '';
- openModal('modal-check');
+ fetch('/dashboard/check/' + btn.dataset.id, {
+ method: 'POST', credentials: 'same-origin',
+ headers: {'Content-Type': 'application/x-www-form-urlencoded', 'X-CSRFToken': getCsrfToken()},
+ body: 'user_note='
+ }).then(function() { location.reload(); });
return;
}