mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Check that interface is there before using it; when pasting the iface is missing.
Fixes error when copy + pasting mails from different folders.
This commit is contained in:
parent
ece1ccff43
commit
7afe1ee1e9
@ -2698,7 +2698,8 @@ app.classes.mail = AppJS.extend(
|
||||
{
|
||||
for (var i = 0; i < _actionObjects.length; i++)
|
||||
{
|
||||
if (_actionObjects[i].id.length>0)
|
||||
// Check that the ID & interface is there. Paste is missing iface.
|
||||
if (_actionObjects[i].id.length>0 && _actionObjects[i].iface)
|
||||
{
|
||||
var dataElem = $j(_actionObjects[i].iface.getDOMNode());
|
||||
dataElem.addClass(_class);
|
||||
|
Loading…
Reference in New Issue
Block a user