svncommit
2006-01-30 2a1e18e50fb2fdd238fe751a86d79dd790e86483
fixed select-all bug


1 files modified
6 ■■■■ changed files
program/js/app.js 6 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -449,7 +449,7 @@
    this.list_rows = this.contact_rows;
    
    if (this.env.cid)
      this.select(this.env.cid);
      this.highlight_row(this.env.cid);
    };
@@ -513,7 +513,7 @@
    this.list_rows = this.identity_rows;
    
    if (this.env.iid)
      this.select(this.env.iid);
      this.highlight_row(this.env.iid);
    };
    
@@ -1300,7 +1300,7 @@
    
    for (var n in this.list_rows)
      if (!filter || this.list_rows[n][filter]==true)
      this.select(n, true);
      this.highlight_row(n, true);
    };