This is just some static backup of the original site, don't expect every link to work!

Changeset 30a840


Ignore:
Timestamp:
Oct 15, 2009, 2:28:19 PM (13 years ago)
Author:
rene <rene@…>
Branches:
lite_0.1, multiEdit, ng_0.6, ng_0.6_help, ng_0.8, ng_0.9
Children:
02a289
Parents:
c8fad1
Message:

indicate if SMTP will not be stored

Location:
chrome
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chrome/content/v_identity/vI_identityData.js

    rc8fad1 r30a840  
    144144        var string = "";       
    145145        var saveBaseId = (vI_statusmenu.objSaveBaseIDMenuItem.getAttribute("checked") == "true")
     146        var saveSMTP = (vI_statusmenu.objSaveSMTPMenuItem.getAttribute("checked") == "true")
    146147        for each (item in Items) {
    147148            var classEqual = (this.comp.equals[item])?"equal":"unequal";
    148             var classBaseID = ((!saveBaseId) && (item == "id"))?" ignoreBaseId":""
     149            var classIgnore = (((!saveBaseId) && (item == "id")) || ((!saveSMTP) && (item == "smtp")))?" ignoreValues":""
    149150            string += "<tr>" +
    150151                "<td class='col1 " + classEqual + "'>" + this[item+"Label"] + "</td>" +
    151                 "<td class='col2 " + classEqual + classBaseID + "'>" + this.comp.compareID[item+"Html"] + "</td>" +
    152                 "<td class='col3 " + classEqual + classBaseID + "'>" + this[item+"Html"] + "</td>" +
     152                "<td class='col2 " + classEqual + classIgnore + "'>" + this.comp.compareID[item+"Html"] + "</td>" +
     153                "<td class='col3 " + classEqual + classIgnore + "'>" + this[item+"Html"] + "</td>" +
    153154                "</tr>"
    154155        }
  • chrome/skin/classic/v_identity/vI_DialogBrowser.css

    rc8fad1 r30a840  
    7373}
    7474
    75 .updateStorage .ignoreBaseId.col2 {
     75.updateStorage .ignoreBaseId.col2, .updateStorage .ignoreValues.col2 {
    7676    text-decoration: line-through;
    7777}
Note: See TracChangeset for help on using the changeset viewer.