Fix padeditbar.toggleDropDown
Only call callback, if one was passed.
This commit is contained in:
parent
9e9cbd5ffa
commit
6bda1f8e4d
|
@ -209,7 +209,7 @@ var padeditbar = (function()
|
|||
returned = true;
|
||||
}
|
||||
}
|
||||
if(!returned) return cb();
|
||||
if(!returned && cb) return cb();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue