Changeset e0896df in github
- Timestamp:
- Aug 27, 2009 3:37:15 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 0816567
- Parents:
- 85c812a
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/js/app.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r4b20e28 re0896df 2 2 =========================== 3 3 4 - Unselect pressed buttons on mouse up (#1485987) 4 5 - Don't set php_value error_log in .htaccess but mention in INSTALL (#1485924) 5 6 - Fix too small status/flag/attachment columns in Safari 4 (#1486063) -
program/js/app.js
r141c9e7 re0896df 23 23 this.labels = new Object(); 24 24 this.buttons = new Object(); 25 this.buttons_sel = new Object(); 25 26 this.gui_objects = new Object(); 26 27 this.gui_containers = new Object(); … … 1258 1259 list.draglayer.hide(); 1259 1260 } 1261 1262 // reset 'pressed' buttons 1263 if (this.buttons_sel) { 1264 for (var id in this.buttons_sel) 1265 if (typeof id != 'function') 1266 this.button_out(this.buttons_sel[id], id); 1267 this.buttons_sel = {}; 1268 } 1260 1269 }; 1261 1270 … … 3547 3556 elm.className = button.sel; 3548 3557 } 3558 this.buttons_sel[id] = command; 3549 3559 } 3550 3560 }
Note: See TracChangeset
for help on using the changeset viewer.
