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

Ignore:
Timestamp:
Nov 3, 2014, 12:35:40 PM (8 years ago)
Author:
rene <rene@…>
Branches:
ng_0.9
Children:
7204cb
Parents:
3c9c29
Message:

code formatting (no code changes)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • content/accountManagerOverlays/vI_am-smtpOverlay.js

    r3c9c29 r509348  
    2424
    2525Components.utils.import("resource://v_identity/vI_nameSpaceWrapper.js");
    26 virtualIdentityExtension.ns(function() { with (virtualIdentityExtension.LIB) {
    27 var am_smtpOverlay = {
    28     refreshServerList : function(aServerKeyToSelect, aFocusList) {
     26virtualIdentityExtension.ns(function () {
     27  with(virtualIdentityExtension.LIB) {
     28    var am_smtpOverlay = {
     29      refreshServerList: function (aServerKeyToSelect, aFocusList) {
    2930        gSmtpServerListWindow.orig_refreshServerList(aServerKeyToSelect, aFocusList);
    3031        var gObserver = Components.classes["@mozilla.org/observer-service;1"].
    31             getService(Components.interfaces.nsIObserverService);
     32        getService(Components.interfaces.nsIObserverService);
    3233        gObserver.notifyObservers(null, "am-smtpChanges", "other");
    33     },
    34    
    35     init : function() {
     34      },
     35
     36      init: function () {
    3637        gSmtpServerListWindow.orig_refreshServerList = gSmtpServerListWindow.refreshServerList;
    3738        gSmtpServerListWindow.refreshServerList = am_smtpOverlay.refreshServerList;
     39      }
    3840    }
    39 }
    40 window.addEventListener('load', am_smtpOverlay.init, false);
    41 }});
     41    window.addEventListener('load', am_smtpOverlay.init, false);
     42  }
     43});
Note: See TracChangeset for help on using the changeset viewer.