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 3bf4042 commit eb5c74eCopy full SHA for eb5c74e
src/jupyter_matlab_kernel/matlab/+jupyter/execute.m
@@ -214,7 +214,12 @@
214
persistent idler;
215
216
if isempty(webwindow)
217
- url = 'toolbox/matlab/codetools/liveeditor/index.html';
+ % Use liveeditor index.html in older MATLAB versions
218
+ if isMATLABReleaseOlderThan("R2026a")
219
+ url = 'toolbox/matlab/codetools/liveeditor/index.html';
220
+ else
221
+ url = 'toolbox/matlab/editor/application/index.html';
222
+ end
223
224
% MATLAB versions R2020b and R2021a requires specifying the base url.
225
% Not doing so results in the URL not being loaded with the error
0 commit comments