Wallet/public/views/includes
Kosta Korenkov e6785335a9 Addon support
Addons are simple Angular modules with views, controllers, services etc. Addons can register
themselves in Copay using pluginManagerProvider. It allows them to add extra items to the bottom
menu and as well as extra tab-views:

````
  addonManagerProvider.registerAddon({
    menuItem: {
      'title': 'Assets',
      'icon': 'icon-pricetag',
      'link': 'assets'
    },
    view: {
      id: 'assets',
      'class': 'assets',
      template: 'colored-coins/views/assets.html'
    }
  });
````

Addons can consume core Copay services and listen for events to react on changes. For this very
first addon system inplementation Copay emits additional BalanceUpdated event so that interested
addons can react on new transactions (see plugin reference implementation below).

As bottom menu can accomodate only 6 items without sacrificing usability, so it was reworked to
have second layer of items. Now If menu has more than 6 items, toggle button will be added to
the menu allowing to reveal extra items in a sliding panel. Bottom menu in this case will show
only 5 items, the rest will be rendered on sliding panel.

This changes addresses issue #2949 and reference implementation of addon could be found here:
https://github.com/troggy/copay-colored-coins-plugin
2015-07-10 14:31:17 +03:00
..
clientError.html Revert "Revert "WIP: Bug/notif2"" 2015-04-23 23:51:21 -03:00
copayers.html bwc 2015-04-11 10:53:15 -03:00
menu-toggle.html Addon support 2015-07-10 14:31:17 +03:00
menu.html Addon support 2015-07-10 14:31:17 +03:00
notifications.html fix delete notification 2015-04-16 12:22:43 -03:00
offline.html Revert "Revert "WIP: Bug/notif2"" 2015-04-23 23:51:21 -03:00
password.html add more buttons 2015-05-18 12:16:44 -03:00
sidebar.html Do not refresh if the same wallet is selected from sidebar 2015-06-12 15:00:51 -03:00
topbar.html add more colours 2015-05-29 15:25:41 -03:00
transaction.html Fix slide up/down for txp and tx 2015-05-06 11:16:19 -03:00
version.html view logs in UX 2015-04-25 14:42:23 -03:00