Changeset 199
- Timestamp:
- 2007-03-30 22:48:19 (2 years ago)
- Files:
-
- branches/0.9.x/chrome/content/dta/dta.js (modified) (8 diffs)
- branches/0.9.x/chrome/content/dta/internalFunctions.js (modified) (1 diff)
- branches/0.9.x/chrome/content/dta/manager.xul (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.9.x/chrome/content/dta/dta.js
r194 r199 91 91 setDefaultDonation(); 92 92 } 93 } catch(e) {Debug.dump("load():", e);} 93 } catch(ex) { 94 DTA_debug.dump("load():", ex); 95 } 94 96 } 95 97 … … 111 113 restoreAll(); 112 114 } catch(e) { 113 D ebug.dump("restoreAll():", e);115 DTA_debug.dump("restoreAll():", e); 114 116 } 115 117 } … … 326 328 restoreAll(); 327 329 } catch(e) { 328 D ebug.dump("restoreAll():", e);330 DTA_debug.dump("restoreAll():", e); 329 331 } 330 332 } … … 410 412 411 413 } catch(e) { 412 D ebug.dump("check():", e);414 DTA_debug.dump("check():", e); 413 415 } 414 416 } … … 446 448 box.appendChild(checkbox); 447 449 } catch(e) { 448 D ebug.dump("addCheckbox():", e);450 DTA_debug.dump("addCheckbox():", e); 449 451 } 450 452 } … … 512 514 513 515 } catch(e) { 514 D ebug.dump("checkItem():", e);516 DTA_debug.dump("checkItem():", e); 515 517 } 516 518 } … … 567 569 var list = $(name + "ListChildren"); 568 570 list.addEventListener("mousedown", checkItem, true); 569 list.addEventListener("keydown", checkItem, true);//aggiunta nn funzionante 571 list.addEventListener("keydown", checkItem, true); 572 570 573 var n = 0; 571 574 for (i in links) { … … 740 743 setDefaultDonation(); 741 744 } 742 } catch(e) {Debug.dump("checkNews()",e);} 745 } catch(e) { 746 DTA_debug.dump("checkNews()",e); 747 } 743 748 } 744 749 branches/0.9.x/chrome/content/dta/internalFunctions.js
r194 r199 59 59 60 60 return aNumber.toFixed(2) + " " + unit; 61 61 62 } 62 63 branches/0.9.x/chrome/content/dta/manager.xul
r194 r199 22 22 onblur="winFocus=false;" 23 23 onunload="return cancelAll(false);" 24 onclose=" if (!cancelAll(false)) return false;"24 onclose="return cancelAll(false);" 25 25 persist="width height screenX screenY" 26 26 ondragover="nsDragAndDrop.dragOver(event,dragObserverTdTa)"
