Changeset 877
- Timestamp:
- 2008-03-12 08:26:41 (8 months ago)
- Files:
-
- branches/1.0.x/chrome/content/dta/select.js (modified) (1 diff)
- branches/1.0.x/chrome/content/dta/select.xul (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0.x/chrome/content/dta/select.js
r832 r877 462 462 }, 463 463 464 // will be called initially and whenever something changed 464 465 notify: function() { 466 if (this.current) { 467 this.makeSelection(); 468 } 469 }, 470 // will be called initially and whenever something changed 465 471 makeSelection: function() { 466 467 472 var tree = this.current; 468 473 var type = tree.type; branches/1.0.x/chrome/content/dta/select.xul
r718 r877 128 128 <vbox style="margin:3px 7px;" class="closer" id="regexcontainer" closed="true" persist="closed"> 129 129 <caption id="additional" tooltiptext="&additional.tip;" label="&additional.caption;"/> 130 <saveddropdown id="filter" flex="1" tooltiptext="&filter.tip;" preference="filter" allowempty="true" onchange="Dialog. makeSelection();"/>131 <checkbox id="regex" persist="checked" label="®ex.label;" oncommand="Dialog. makeSelection();" />130 <saveddropdown id="filter" flex="1" tooltiptext="&filter.tip;" preference="filter" allowempty="true" onchange="Dialog.notify();"/> 131 <checkbox id="regex" persist="checked" label="®ex.label;" oncommand="Dialog.notify();" /> 132 132 </vbox> 133 133
