diff options
author | Thomas B. <thomas@roundcube.net> | 2014-01-02 03:02:58 -0800 |
---|---|---|
committer | Thomas B. <thomas@roundcube.net> | 2014-01-02 03:02:58 -0800 |
commit | 2957e77fbcd3f1b3045c12cc8bc91509257c13be (patch) | |
tree | 0ad225cc3ee341f0be44c5b5631b0a2b80065d47 | |
parent | 172302e2cf2c08ac02eca57e4147b30f7bf67d7d (diff) | |
parent | 1fdb55a99eea99eea325c642b4c06d866d0d1b19 (diff) |
Merge pull request #159 from JohnDoh/group_delete
re-add lost group_delete js event
-rw-r--r-- | program/js/app.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 44afd5c7c..da102143f 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5048,6 +5048,7 @@ function rcube_webmail() { var key = 'G'+prop.source+prop.id; if (this.treelist.remove(key)) { + this.triggerEvent('group_delete', { source:prop.source, id:prop.id }); delete this.env.contactfolders[key]; delete this.env.contactgroups[key]; } |