Merge pull request +10807 from c9/share-dialog

Fix share dialog issues
pull/223/head
Lennart Kats 2015-12-01 09:49:55 +01:00
commit ea73156330
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -66,7 +66,7 @@
"c9.ide.language.javascript.tern": "#d8f3df1b39",
"c9.ide.language.javascript.infer": "#8478e3c702",
"c9.ide.language.jsonalyzer": "#45453961d9",
"c9.ide.collab": "#14111ef873",
"c9.ide.collab": "#30efed939e",
"c9.ide.local": "#a6e689e33b",
"c9.ide.find": "#e33fbaed2f",
"c9.ide.find.infiles": "#c3bf17286d",

Wyświetl plik

@ -35299,8 +35299,8 @@ apf.textbox = function(struct, tagName) {
var v;
if (this.isHTMLBox) {
if (this.$input.innerText)
v = this.$input.innerText;
if (this.$input.textContent)
v = this.$input.textContent;
else {
//Chrome has a bug, innerText is cleared when display property is changed
v = apf.html_entity_decode(this.$input.innerHTML