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

Changeset f4283b


Ignore:
Timestamp:
Oct 15, 2014, 12:04:24 AM (8 years ago)
Author:
rene <rene@…>
Branches:
ng_0.9
Children:
18a879
Parents:
f905aa
Message:

disabled addons are of no interest

File:
1 edited

Legend:

Unmodified
Added
Removed
  • content/bindings/vI_debugBox.xml

    rf905aa rf4283b  
    8686          AddonManager.getAllAddons(function(addons) {
    8787            var strings = addons.map(function(addon) {
    88                 return "addon: " + addon.name + " " + addon.version
    89                 + (addon.userDisabled || addon.appDisabled ? " [DISABLED]" : "");
     88                return (addon.userDisabled || addon.appDisabled ? "" : "addon: " + addon.name + " " + addon.version + "\n");
    9089            });
    9190            self.dump("--------------------------------------------------------------------------------\n" +
    92                       strings.join("\n") +
    93                       "\n--------------------------------------------------------------------------------\n");
     91                      strings.join("") +
     92                      "--------------------------------------------------------------------------------\n");
    9493          });
    9594        ]]></body>
Note: See TracChangeset for help on using the changeset viewer.