mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-09 09:35:02 +09:00
merge
This commit is contained in:
commit
529d0bc0d9
52 changed files with 255 additions and 249 deletions
2
dist/.gitignore
vendored
2
dist/.gitignore
vendored
|
@ -3,8 +3,6 @@ Anytype Setup*
|
|||
anytypeHelper*
|
||||
mac/*
|
||||
.icon-ico/*
|
||||
main.js
|
||||
main.js.map
|
||||
commands.js
|
||||
bundle-back.js
|
||||
anytypeHelper*
|
||||
|
|
2
dist/index.html
vendored
2
dist/index.html
vendored
|
@ -6,7 +6,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script src="./run.js" type="text/javascript"></script>
|
||||
<script src="./js/run.js" type="text/javascript"></script>
|
||||
|
||||
<!-- %REPLACE-JS% -->
|
||||
</body>
|
||||
|
|
4
dist/index.web.html
vendored
4
dist/index.web.html
vendored
|
@ -17,11 +17,11 @@
|
|||
};
|
||||
</script>
|
||||
|
||||
<script src="./polyfill.js" type="text/javascript"></script>
|
||||
<script src="./js/polyfill.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body onload="onload();">
|
||||
<div id="root"></div>
|
||||
<script src="./run.js" type="text/javascript"></script>
|
||||
<script src="./js/run.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
function onload () {
|
||||
RendererEvents.init(null, {
|
||||
|
|
2
dist/js/.gitignore
vendored
Normal file
2
dist/js/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
main.js
|
||||
main.js.map
|
0
dist/polyfill.js → dist/js/polyfill.js
vendored
0
dist/polyfill.js → dist/js/polyfill.js
vendored
2
dist/run.js → dist/js/run.js
vendored
2
dist/run.js → dist/js/run.js
vendored
|
@ -1,6 +1,6 @@
|
|||
const s = document.createElement('script');
|
||||
|
||||
s.src = './main.js?' + Math.random();
|
||||
s.src = './js/main.js?' + Math.random();
|
||||
s.type = 'text/javascript';
|
||||
|
||||
document.body.appendChild(s);
|
Loading…
Add table
Add a link
Reference in a new issue