diff --git a/src/components/auditors.vue b/src/components/auditors.vue
index 972c814..f4ee288 100644
--- a/src/components/auditors.vue
+++ b/src/components/auditors.vue
@@ -3,7 +3,7 @@
-
Auditors
+
There are many auditors, this is only a short list because of their usage of one of the
Automation Platforms.
Auditors are the only ones that grant you the SOC 2 certification, they may or may not require that you use an Automation Platform to complete your audit.
@@ -76,7 +76,7 @@
-
Security Consultants
+
Most of the reports from the above providers are pretty easy to read, but you get stuck and need help reviewing them or you need a consultant to help you implement the controls to allow you to pass the audit, one of these might help.
@@ -150,6 +150,8 @@
import EasyDataTable from 'vue3-easy-data-table';
import 'vue3-easy-data-table/dist/style.css';
+import { navigateTo } from './utilities';
+
import Danger from './danger.vue';
import Warning from './warning.vue';
import Success from './success.vue';
@@ -195,20 +197,6 @@ const showRow = clickedElement => {
}
};
-const navigateTo = target => {
- if (!target) {
- window.scrollTo(0, -window.scrollY);
- return;
- }
- const element = document.getElementById(target);
- window.scrollTo(0, window.scrollY + element.getBoundingClientRect().top - 200);
- setTimeout(() => {
- if (Math.abs(element.getBoundingClientRect().top - 60) > 10) {
- window.scrollTo(0, window.scrollY + element.getBoundingClientRect().top - 200);
- }
- }, 10);
-};
-