prevent typeError for undefined button when logged out
parent
c4e1b5f7d4
commit
0f4013505d
|
@ -2070,7 +2070,9 @@ define([
|
|||
|
||||
// Import template
|
||||
var $template = common.createButton('importtemplate', true, {}, openTemplatePicker);
|
||||
$template.appendTo(toolbar.$drawer);
|
||||
if ($template && typeof($template.appendTo) === 'function') {
|
||||
$template.appendTo(toolbar.$drawer);
|
||||
}
|
||||
})();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue