open-consul/ui-v2/app
John Cowen 011fb8a559 ui: Enable creating listeners using an object/hash (#5975)
Makes listening to multiple events on one target slightly easier.
Adding events can be rolled up into passing through an object, and the
returned remove function removes all of the handlers in the object

For example:

```
//this.listen...
const remove = listeners.add(
  {
    'message': handler,
    'error': handler
  }
);
remove(); // removes all listeners in the object
```

The entire API for listeners is now becoming slightly overloaded, so
potentially we'd use this API always and remove the ability to use a
string/function pair.
2019-09-04 08:35:04 +00:00
..
adapters
components ui: Reduce mutation of html.classList (#5974) 2019-09-04 08:35:03 +00:00
computed
controllers ui: Gateway Addresses (#6075) 2019-07-05 09:07:25 +01:00
forms
helpers ui: Adds readonly meta data to the serviceInstance and node detail pages (#6196) 2019-08-02 13:53:52 +02:00
initializers
instance-initializers ui: Allow text selection of clickable elements and their contents (#5770) 2019-09-04 08:34:58 +00:00
mixins ui: Don't look for isDescriptor on null (related to null proxies) (#5782) 2019-05-03 11:39:32 +01:00
models ui: Reconcile ember-data store when records are deleted via blocking (#5745) 2019-09-04 08:34:57 +00:00
routes ui: Gateway Addresses (#6075) 2019-07-05 09:07:25 +01:00
routing
search/filters ui: Adds ability to search by policy, role or service ident names (#5811) 2019-06-05 09:25:32 +01:00
serializers ui: Reconcile ember-data store when records are deleted via blocking (#5745) 2019-09-04 08:34:57 +00:00
services ui: Reconcile ember-data store when records are deleted via blocking (#5745) 2019-09-04 08:34:57 +00:00
styles ui: CSS Components Migration (#5913) 2019-09-04 08:35:01 +00:00
templates ui: CSS Components Migration (#5913) 2019-09-04 08:35:01 +00:00
utils ui: Enable creating listeners using an object/hash (#5975) 2019-09-04 08:35:04 +00:00
validations
app.js
env.js
index.html ui: modify content path (#5950) 2019-06-26 11:43:30 -05:00
resolver.js
router.js ui: Ensure Service Instance pages account for nodes (#5933) 2019-06-11 10:18:50 +01:00