Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaByte committed Jan 6, 2024
1 parent 94ad633 commit 4cd5217
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion courses/compound-operators.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: عوامل مركبه
snippet: This is an excerpt of my first blog post.
snippet: في عالم البرمجة، تُستخدم المشغلات او العوامل
order: 5
---

Expand Down
2 changes: 1 addition & 1 deletion islands/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function Editor(props: CounterProps) {

return (
<>
<div class="flex gap-2 px-2 overflow-hidden">
<div dir="rtl" class="flex gap-2 px-2">
<button
class="btn btn-info grow"
onClick={handleCodeRun}
Expand Down
5 changes: 4 additions & 1 deletion static/moaco.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ require(["vs/editor/editor.main"], () => {
window.editor = monaco.editor.create(document.getElementById("editor"), {
language: "javascript",
theme: "vs-dark",
minimap: { enabled: false },
});

console.log(window.editor);

setInterval(() => {
editor.layout();
}, 100);
}, 50);
});
1 change: 1 addition & 0 deletions static/resizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ document.addEventListener("DOMContentLoaded", function () {
document.body.style.overflow = "hidden";

Split(["#split-0", "#split-1"], {
gutterAlign: "start",
minSize: 0,
gutterSize: 13,
});
Expand Down

0 comments on commit 4cd5217

Please sign in to comment.