handle files without extensions when importing into the code editor

This commit is contained in:
ansuz
2019-07-13 10:25:22 +02:00
parent 4156b1988f
commit 8193a1997c
2 changed files with 12 additions and 3 deletions

View File

@@ -323,7 +323,7 @@ define([
var mode;
if (!mime) {
var ext = /.+\.([^.]+)$/.exec(file.name);
if (ext[1]) {
if (ext && ext[1]) {
mode = CMeditor.findModeByExtension(ext[1]);
mode = mode && mode.mode || null;
}
@@ -339,7 +339,8 @@ define([
exp.setMode('text');
$toolbarContainer.find('#language-mode').val('text');
}
return { content: content };
// return the mode so that the code editor can decide how to display the new content
return { content: content, mode: mode };
};
exp.setValueAndCursor = function (oldDoc, remoteDoc) {