Aleksander Machniak
2014-11-17 d876c6bd52f20a4bcfffef46d7504f3ebd89383f
Merge pull request #249 from JohnDoh/patch-1

Check to see if the content frame exists before loading a contact
1 files modified
2 ■■■ changed files
program/js/app.js 2 ●●● patch | view | raw | blame | history
program/js/app.js
@@ -4704,7 +4704,7 @@
      source = this.env.source ? this.env.address_sources[this.env.source] : null;
    // we don't have dblclick handler here, so use 200 instead of this.dblclick_time
    if (id = list.get_single_selection())
    if (this.env.contentframe && (id = list.get_single_selection()))
      this.preview_timer = setTimeout(function(){ ref.load_contact(id, 'show'); }, 200);
    else if (this.env.contentframe)
      this.show_contentframe(false);