From 939b5486542553a1690bb9520004f7237e598589 Mon Sep 17 00:00:00 2001 From: nightwing Date: Fri, 27 Nov 2015 00:51:35 +0400 Subject: [PATCH 1/2] fix +10803 username in the collab invite dialog is not trimmed --- package.json | 2 +- plugins/c9.ide.ui/lib_apf.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 48ab39f6..0f3c8e64 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "c9.ide.language.javascript.tern": "#468cc173c4", "c9.ide.language.javascript.infer": "#8478e3c702", "c9.ide.language.jsonalyzer": "#45453961d9", - "c9.ide.collab": "#14111ef873", + "c9.ide.collab": "#f49f6762aa", "c9.ide.local": "#a6e689e33b", "c9.ide.find": "#e33fbaed2f", "c9.ide.find.infiles": "#c3bf17286d", diff --git a/plugins/c9.ide.ui/lib_apf.js b/plugins/c9.ide.ui/lib_apf.js index 25988dc1..b7b625cc 100644 --- a/plugins/c9.ide.ui/lib_apf.js +++ b/plugins/c9.ide.ui/lib_apf.js @@ -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 From 288dfd3cd0794dd457611b9340a9874ebd7f43bf Mon Sep 17 00:00:00 2001 From: nightwing Date: Fri, 27 Nov 2015 01:04:57 +0400 Subject: [PATCH 2/2] fix notify via email checkbox --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0f3c8e64..12c88a83 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "c9.ide.language.javascript.tern": "#468cc173c4", "c9.ide.language.javascript.infer": "#8478e3c702", "c9.ide.language.jsonalyzer": "#45453961d9", - "c9.ide.collab": "#f49f6762aa", + "c9.ide.collab": "#30efed939e", "c9.ide.local": "#a6e689e33b", "c9.ide.find": "#e33fbaed2f", "c9.ide.find.infiles": "#c3bf17286d",