mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-18 11:58:24 +01:00
Do not try to hide the input if not there - it causes an exception, stopping the template from loading
This commit is contained in:
parent
f7592ae0b0
commit
5774bf9d5a
@ -847,7 +847,10 @@ var et2_selectbox = (function(){ "use strict"; return et2_inputWidget.extend(
|
|||||||
|
|
||||||
if (this.options.tags) {
|
if (this.options.tags) {
|
||||||
// Always hide input options
|
// Always hide input options
|
||||||
this.input.hide();
|
if(this.input)
|
||||||
|
{
|
||||||
|
this.input.hide();
|
||||||
|
}
|
||||||
|
|
||||||
if (_disable)
|
if (_disable)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user