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 440b230 commit e47762dCopy full SHA for e47762d
src/jupyter_matlab_kernel/matlab/+jupyter/execute.m
@@ -270,5 +270,7 @@
270
result.value = [sprintf("%s",text), text];
271
272
% Helper function to notify browser page load finished
273
-function pageLoadCallback(~,~,idler)
+function pageLoadCallback(webwindow,~,idler)
274
idler.stopIdling();
275
+% Disable alert box which is preventing running JS after certain period of time.
276
+webwindow.executeJS('window.alert = function(){}');
0 commit comments