1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00
This commit is contained in:
Martin McKeaveney 2020-11-14 17:56:24 +00:00
parent 63dd9bcd06
commit 21a8f2aa71
2 changed files with 12 additions and 22 deletions

View file

@ -49,7 +49,7 @@ async function startApp() {
win = new BrowserWindow({
width: 1920,
height: 1080,
icon: join(__dirname, "..", "build", "icons", "512x512.png")
icon: join(__dirname, "..", "build", "icons", "512x512.png"),
})
win.setTitle(APP_TITLE)
win.loadURL(APP_URL)

View file

@ -1,5 +1,5 @@
<script>
import { RichText } from '@budibase/bbui'
import { RichText } from "@budibase/bbui"
export let _bb
@ -16,29 +16,19 @@
// Need to determine what options we want to expose.
let options = {
"modules": {
"toolbar": [
modules: {
toolbar: [
[
{
"header": [
1,
2,
3,
false
]
}
header: [1, 2, 3, false],
},
],
[
"bold",
"italic",
"underline",
"strike"
]
]
["bold", "italic", "underline", "strike"],
],
},
"placeholder": "Type something...",
"theme": "snow"
placeholder: "Type something...",
theme: "snow",
}
</script>
<RichText bind:content {options} />
<RichText bind:content {options} />