mashlib 1.7.22-cf728d26 → 1.7.22-d29fefc0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/databrowser.html +1 -1
- package/dist/mash.css +974 -241
- package/dist/mash.css.map +1 -1
- package/dist/mashlib.js +46 -15
- package/dist/mashlib.js.map +1 -1
- package/dist/mashlib.min.js +4 -4
- package/dist/mashlib.min.js.map +1 -1
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -102,3 +102,4 @@ How does the data browser work?
|
|
|
102
102
|
The mashlib part of SolidOS Databrowser Frontend is *read-write;* that is, the user is allowed to edit data and create new things. It is *live,* in that often the databrowser subscribed (using a websocket) for any changes which other users make, so users' screens are synchronized.
|
|
103
103
|
|
|
104
104
|
A major limitation of this data browser hack is that current web browsers are made to distrust any code loaded from one domain that uses data from another domain. This makes it hard, strangely complicated, and sometimes impossible to do some things.
|
|
105
|
+
|
package/dist/databrowser.html
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<!doctype html><html><head><meta charset="utf-8"/><title>SolidOS Web App</title><script>document.addEventListener('DOMContentLoaded', function() {
|
|
2
2
|
panes.runDataBrowser()
|
|
3
|
-
})</script><link href="/mash.css" rel="stylesheet"></head><body
|
|
3
|
+
})</script><link href="/mash.css" rel="stylesheet"></head><body id="PageBody"><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 src="/mashlib.min.js"></script></body></html>
|