mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-01 21:21:10 -06:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
parent
30bcadab3e
commit
1555904bef
3771 changed files with 1251328 additions and 0 deletions
2
resources/tooltip/.md
Normal file
2
resources/tooltip/.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#### TODO:
|
||||
We are creating these contents, please wait ...
|
||||
1
resources/tooltip/main.css
Normal file
1
resources/tooltip/main.css
Normal file
File diff suppressed because one or more lines are too long
2
resources/tooltip/main.js
Normal file
2
resources/tooltip/main.js
Normal file
File diff suppressed because one or more lines are too long
24
resources/tooltip/styled.html
Normal file
24
resources/tooltip/styled.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<link rel="stylesheet" href="./main.css" />
|
||||
<script src="./main.js"></script>
|
||||
</head>
|
||||
<body style="background-color: #313B3E;">
|
||||
<div class="container markdown-body" id="contents"></div>
|
||||
</body>
|
||||
<script>
|
||||
const resizeOberver = new ResizeObserver((entities) => {
|
||||
const height = entities[0].contentRect.height
|
||||
document.title = "" + height
|
||||
})
|
||||
resizeOberver.observe(document.querySelector('#contents'))
|
||||
window.showMarkdownFile = function (file) {
|
||||
$.get(file, function( data ) {
|
||||
window.showMarkdown(encodeURIComponent(data));
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</html>
|
||||
2
resources/tooltip/zh_CN/.md
Normal file
2
resources/tooltip/zh_CN/.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#### 建设中:
|
||||
内容正在减少中,敬请期待……
|
||||
Loading…
Add table
Add a link
Reference in a new issue