forked from extern/egroupware
Catch error from missing ckeditor stuff so it doesn't break everything else
This commit is contained in:
parent
61ef8de61e
commit
c55e636f43
@ -103,7 +103,15 @@ var et2_htmlarea = et2_inputWidget.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
destroy: function() {
|
destroy: function() {
|
||||||
|
try
|
||||||
|
{
|
||||||
this.htmlNode.ckeditorGet().destroy(true);
|
this.htmlNode.ckeditorGet().destroy(true);
|
||||||
|
}
|
||||||
|
catch (e)
|
||||||
|
{
|
||||||
|
this.egw().debug("warn",e);
|
||||||
|
this.htmlNode = null;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
set_value: function(_value) {
|
set_value: function(_value) {
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user