This graph represents the distribution of grades for every student who completed CHEM 162 over the past 5 years.
+ data-bs-trigger="focus"
+ title="Course Grade Distribution"
+ data-bs-content="What is CGD?"
+ >
+
+
Number of grades in this sample: 6988 (5 years). Data not instructor-specific.
@@ -22,6 +26,7 @@
diff --git a/pathways_vue/pages/home.vue b/pathways_vue/pages/home.vue
index cf0849a3..f070715b 100644
--- a/pathways_vue/pages/home.vue
+++ b/pathways_vue/pages/home.vue
@@ -73,11 +73,6 @@
>
About this app
-
-
-
-
-
@@ -93,7 +88,7 @@ import { proccessSeaMajors } from '../helpers/major';
import Layout from '../layout.vue';
import SearchChooser from '../components/search/chooser.vue';
-import { Modal, Popover } from 'bootstrap';
+import { Modal } from 'bootstrap';
export default {
components: {
@@ -111,13 +106,6 @@ export default {
mounted() {
// show the welcome modal when the component is mounted
this.showWelcomeModal();
-
- // enable popovers everywhere (from bs5 documentation)
- var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
- var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
- return new Popover(popoverTriggerEl)
- })
-
},
methods: {
showWelcomeModal(event){