Spaces:
Runtime error
Runtime error
chore: another attemp
Browse files
app.py
CHANGED
@@ -542,15 +542,12 @@ back_to_top_btn_html = """
|
|
542 |
</button>
|
543 |
|
544 |
<script>
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
iframe.moveToAnchor('toTopBtn', element);
|
550 |
-
} else {
|
551 |
-
window.scroll({ top: 0, behavior: 'smooth' });
|
552 |
-
}
|
553 |
}
|
|
|
554 |
</script>
|
555 |
|
556 |
"""
|
|
|
542 |
</button>
|
543 |
|
544 |
<script>
|
545 |
+
window.addEventListener('message', function(event) {
|
546 |
+
if (event.data === 'scrollToTop') {
|
547 |
+
var iframe = document.getElementById('your-iframe-id'); // replace with your iframe's id
|
548 |
+
iframe.scrollIntoView(true);
|
|
|
|
|
|
|
|
|
549 |
}
|
550 |
+
});
|
551 |
</script>
|
552 |
|
553 |
"""
|