Changeset 199

Show
Ignore:
Timestamp:
2007-03-30 22:48:19 (2 years ago)
Author:
MaierMan
Message:

imported from CVS

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/0.9.x/chrome/content/dta/dta.js

    r194 r199  
    9191                  setDefaultDonation(); 
    9292                } 
    93         } catch(e) {Debug.dump("load():", e);} 
     93        } catch(ex) { 
     94                DTA_debug.dump("load():", ex); 
     95        } 
    9496} 
    9597 
     
    111113            restoreAll(); 
    112114                } catch(e) { 
    113                         Debug.dump("restoreAll():", e); 
     115                        DTA_debug.dump("restoreAll():", e); 
    114116                } 
    115117        } 
     
    326328            restoreAll(); 
    327329                } catch(e) { 
    328                         Debug.dump("restoreAll():", e); 
     330                        DTA_debug.dump("restoreAll():", e); 
    329331                } 
    330332        } 
     
    410412                 
    411413        } catch(e) { 
    412                 Debug.dump("check():", e); 
     414                DTA_debug.dump("check():", e); 
    413415        } 
    414416} 
     
    446448                box.appendChild(checkbox); 
    447449        } catch(e) { 
    448                 Debug.dump("addCheckbox():", e); 
     450                DTA_debug.dump("addCheckbox():", e); 
    449451        } 
    450452} 
     
    512514                         
    513515        } catch(e) { 
    514                 Debug.dump("checkItem():", e); 
     516                DTA_debug.dump("checkItem():", e); 
    515517        } 
    516518} 
     
    567569        var list = $(name + "ListChildren"); 
    568570        list.addEventListener("mousedown", checkItem, true); 
    569         list.addEventListener("keydown", checkItem, true);//aggiunta nn funzionante 
     571        list.addEventListener("keydown", checkItem, true); 
     572         
    570573        var n = 0; 
    571574        for (i in links) { 
     
    740743                setDefaultDonation(); 
    741744                } 
    742 } catch(e) {Debug.dump("checkNews()",e);} 
     745} catch(e) { 
     746        DTA_debug.dump("checkNews()",e); 
     747
    743748} 
    744749 
  • branches/0.9.x/chrome/content/dta/internalFunctions.js

    r194 r199  
    5959         
    6060        return aNumber.toFixed(2) + " " + unit; 
     61 
    6162} 
    6263 
  • branches/0.9.x/chrome/content/dta/manager.xul

    r194 r199  
    2222        onblur="winFocus=false;"  
    2323        onunload="return cancelAll(false);"  
    24         onclose="if (!cancelAll(false)) return false;"  
     24        onclose="return cancelAll(false);"  
    2525        persist="width height screenX screenY"  
    2626        ondragover="nsDragAndDrop.dragOver(event,dragObserverTdTa)"