We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06af857 commit 8193137Copy full SHA for 8193137
source/entryjs/api/2024-04-24-ml.md
@@ -877,9 +877,27 @@ const learningPopup = new Popup({});
877
learningPopup.on('remove', () => {
878
// 인공지능 블록을 블록메뉴에서 제거
879
Entry.aiLearning.removeLearningBlocks();
880
+ this.learningPopup.hide();
881
}
882
```
883
884
+<br >
885
+
886
887
888
+#### close
889
890
+인공지능 학습하기 팝업이 닫힐 때 발생합니다.
891
892
+```js
893
+const learningPopup = new Popup({});
894
895
+learningPopup.on('close', () => {
896
+ Entry.aiLearning.reload();
897
+});
898
899
+```
900
901
902
903
<br >
0 commit comments