Changeset b5002a01 in github
- Timestamp:
- May 10, 2010 6:00:00 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 5933d98
- Parents:
- 500af6f
- File:
-
- 1 edited
-
program/js/app.js (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
r500af6f rb5002a01 1700 1700 var update, add_url = ''; 1701 1701 1702 if (!sort_col) sort_col = this.env.sort_col; 1703 if (!sort_order) sort_order = this.env.sort_order; 1702 if (sort_col === null) 1703 sort_col = this.env.sort_col; 1704 if (!sort_order) 1705 sort_order = this.env.sort_order; 1704 1706 1705 1707 if (this.env.sort_col != sort_col || this.env.sort_order != sort_order) { … … 1710 1712 if (this.env.threading != threads) { 1711 1713 update = 1; 1712 add_url += '&_threads=' + threads; 1714 add_url += '&_threads=' + threads; 1713 1715 } 1714 1716 … … 1727 1729 if (cols[i]) 1728 1730 newcols[newcols.length] = cols[i]; 1729 1731 1730 1732 if (newcols.join() != this.env.coltypes.join()) { 1731 1733 update = 1; … … 1927 1929 }; 1928 1930 1929 // thread expanding/collapsing handler 1931 // thread expanding/collapsing handler 1930 1932 this.expand_message_row = function(e, uid) 1931 1933 { … … 1942 1944 // message list expanding 1943 1945 this.expand_threads = function() 1944 { 1946 { 1945 1947 if (!this.env.threading || !this.env.autoexpand_threads || !this.message_list) 1946 1948 return;
Note: See TracChangeset
for help on using the changeset viewer.
