зеркало из https://github.com/mozilla/pluotsorbet.git
Use textContent to avoid html insertion.
This commit is contained in:
Родитель
dc2a9c5ac1
Коммит
1754af01bb
|
@ -1930,7 +1930,9 @@ var currentlyFocusedTextEditor;
|
|||
}
|
||||
var li = document.createElement("li");
|
||||
var text = util.fromJavaString(command.klass.classInfo.getField("I.shortLabel.Ljava/lang/String;").get(command));
|
||||
li.innerHTML = "<a>" + text + "</a>";
|
||||
var a = document.createElement("a");
|
||||
a.textContent = text;
|
||||
li.appendChild(a);
|
||||
|
||||
li.onclick = function(e) {
|
||||
e.preventDefault();
|
||||
|
|
Загрузка…
Ссылка в новой задаче