Skip to content

Commit d0699e6

Browse files
committed
update heart url
1 parent c13e12f commit d0699e6

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/App.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ function loadModel(url: string, name: string) {
7373
"http://sites.bioeng.auckland.ac.nz/medtech/lungs";
7474
break;
7575
case "heart":
76-
window.location.href =
77-
"https://uoa-heart-mechanics-research.github.io/medtech-heart/model-heart/";
76+
window.location.href = "https://copper3d-brids.github.io/my_heart/";
7877
break;
7978
case "whole-stomach_1":
8079
window.location.href =

src/components/Buttons.vue

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,9 @@
2222
<script setup lang="ts">
2323
const handleCardClick = (name: string) => {
2424
if (name == "heart") {
25-
window.open(
26-
"https://uoa-heart-mechanics-research.github.io/medtech-heart/model-heart/",
27-
"_blank"
28-
);
25+
window.open("https://copper3d-brids.github.io/my_heart/", "_blank");
2926
} else if (name == "stomach") {
30-
window.open("https://sparc.science/datasets/136?type=dataset", "_blank");
27+
// window.open("https://sparc.science/datasets/136?type=dataset", "_blank");
3128
} else if (name == "lungs") {
3229
window.open("http://sites.bioeng.auckland.ac.nz/medtech/lungs", "_blank");
3330
} else if (name == "breast") {

0 commit comments

Comments
 (0)