-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdatabrowser.html
More file actions
28 lines (28 loc) · 959 Bytes
/
databrowser.html
File metadata and controls
28 lines (28 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body id="PageBody">
<!-- solid-panes' OutlineManager injects into this element -->
<header id="PageHeader"></header>
<div class="TabulatorOutline" id="DummyUUID" role="main">
<table id="outline"></table>
<div id="GlobalDashboard"></div>
</div>
<footer id="PageFooter"></footer>
<script>
// Call runDataBrowser after all scripts load
document.addEventListener('DOMContentLoaded', function() {
console.log('📄 DOMContentLoaded fired, checking for panes...')
if (window.panes && window.panes.runDataBrowser) {
console.log('✅ panes.runDataBrowser found, calling it...')
window.panes.runDataBrowser()
} else {
console.error('❌ panes.runDataBrowser not found on window')
}
})
</script>
</body>
</html>