Changeset 1073
- Timestamp:
- 2008-09-09 00:31:14 (2 months ago)
- Files:
-
- trunk/chrome/content/dta/select.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/select.js
r1069 r1073 282 282 // AppendElement will just accept nsIAtom. 283 283 // no documentation on devmo, xulplanet though :p 284 //prop.AppendElement(this.getAtom(l.checked));284 prop.AppendElement(this.getAtom(l.checked)); 285 285 }, 286 286 getCellProperties: function(idx, column, prop) { … … 537 537 let filters = []; 538 538 if (!$('disableothers').checked) { 539 for each (let box in boxen) { 539 for (let i = 0, e = boxen.length; i < e; ++i) { 540 let box = boxen[i]; 540 541 if (!box.checked) { 541 542 continue;
