Elliot

Results 15 issues of Elliot

In IE11, __isProxy is enumerable when iterating over an object's properties like this: `for (var requiredField in this.data.missing_fields) {` It should not be enumerable.

bug

We already have a test (see test 24 in `test\test.js`) and a solution for this issue, but the test is skipped and the solution is commented out because the solution...

bug

With regular `Proxy` objects you can trigger an infinite loop by modifying an object that was just modified within the `set` handler: ``` let validator = { set: function(obj, prop,...

enhancement

Today, to register child components, we must do something like this: ``` this.registerChild(childComponent); ``` The template of the parent component might then look something like this: ``` Hello world! ```...

Quick start documentation or sample components should demonstrate usage of Nimbly with an `import` statement.

Today, we have the `isReady` method, which returns `true` when the component (and all child components) are no longer processing any UI updates, data requests, etc. We should add the...

TXMBase is designed to unregister and delete components if they are found to not be contained within the DOMNode of a parent component after a refresh. TXMBase was built this...

enhancement

In addition to the existing `resolve` and `reject` arguments for `dataBinding` handler methods, we should also include the ObservableSlim `changes` that triggered the `dataBinding`. This would help us deal with...

enhancement