IE fixes
This commit is contained in:
parent
26053fc0af
commit
7b07851c8f
2 changed files with 4 additions and 4 deletions
|
|
@ -153,7 +153,7 @@ exports.launch = function(env) {
|
|||
env.editor.setSelectionStyle("text");
|
||||
}
|
||||
};
|
||||
selectEl.onchange = setSelectionStyle;
|
||||
selectEl.onclick = setSelectionStyle;
|
||||
setSelectionStyle();
|
||||
|
||||
|
||||
|
|
@ -161,7 +161,7 @@ exports.launch = function(env) {
|
|||
function setHighlightActiveLine() {
|
||||
env.editor.setHighlightActiveLine(!!activeEl.checked);
|
||||
};
|
||||
activeEl.onchange = setHighlightActiveLine;
|
||||
activeEl.onclick = setHighlightActiveLine;
|
||||
setHighlightActiveLine();
|
||||
|
||||
|
||||
|
|
@ -169,7 +169,7 @@ exports.launch = function(env) {
|
|||
function setShowInvisibles() {
|
||||
env.editor.setShowInvisibles(!!showHiddenEl.checked);
|
||||
};
|
||||
showHiddenEl.onchange = setShowInvisibles;
|
||||
showHiddenEl.onclick = setShowInvisibles;
|
||||
setShowInvisibles();
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit ffa7b367d80f882b72eba7fd265950ff0ec00ad2
|
||||
Subproject commit e42028001cb457556759df94ec1cd7fe20dde168
|
||||
Loading…
Add table
Add a link
Reference in a new issue