Fixed issue #764 - Not showing TO: / CC: fields on IE11 when answering a ticket.
This commit is contained in:
parent
aa37dc02ca
commit
e00776ea64
1 changed files with 2 additions and 0 deletions
|
@ -125,6 +125,7 @@ class App.Utils
|
||||||
child = el.firstChild
|
child = el.firstChild
|
||||||
break if !child
|
break if !child
|
||||||
break if child.nodeType isnt 1 || child.tagName isnt 'BR'
|
break if child.nodeType isnt 1 || child.tagName isnt 'BR'
|
||||||
|
break if !child.remove
|
||||||
child.remove()
|
child.remove()
|
||||||
|
|
||||||
loop
|
loop
|
||||||
|
@ -133,6 +134,7 @@ class App.Utils
|
||||||
child = el.lastChild
|
child = el.lastChild
|
||||||
break if !child
|
break if !child
|
||||||
break if child.nodeType isnt 1 || child.tagName isnt 'BR'
|
break if child.nodeType isnt 1 || child.tagName isnt 'BR'
|
||||||
|
break if !child.remove
|
||||||
child.remove()
|
child.remove()
|
||||||
|
|
||||||
# true|false = App.Utils.htmlLastLineEmpty(element)
|
# true|false = App.Utils.htmlLastLineEmpty(element)
|
||||||
|
|
Loading…
Reference in a new issue