зеркало из https://github.com/mozilla/pluotsorbet.git
Merge pull request #988 from brendandahl/safer-text
Use textContent to avoid html insertion.
This commit is contained in:
Коммит
c2466cc3b2
|
@ -1913,7 +1913,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();
|
||||
|
|
Загрузка…
Ссылка в новой задаче