Ivan Pantic
Ivan Pantic
Electron probably needs to be updated
Actually, I just went ahead and implemented allErrors property. ``` javascript validator.addObserver('errors.[]', this, function (sender, key, value, context, rev) { var errors = Ember.makeArray(); var allErrors = Ember.makeArray(); this.validators.forEach(function (validator)...
@posativ Yeah, the real deal would be adding an extensible user support, where the current anon system is just the "default provider" or something. I can also see how any...
@javier-garcia-meteologica You are right about the problem with cols() and vals(). There were other issues that I missed. The problem is, since this library doesn't have a test suite, I...
@javier-garcia-meteologica Primary reason why I gave up on `cols` and `vals` use case is that there is nothing connecting two calls, so there is no good way to guarantee the...
 It seems opts file is only parsed if you specify --opts arg. It no longer loads the file by default. This behavior is a deal breaker for me. I...
@Jack-Barry The trick is that Webstorm IDE allows me to click a little "play" button next to unit tests and run them immediately in an ad-hoc fashion. And I couldn't...
@Jack-Barry Yes, but this is a custom run configuration. You would create these for permanent things you would want to run all the time. Eg. "All tests", "All unit tests",...
> We should call it something like interceptor cause custom says nothing about the behaviour I chose "custom", because it allows us to customize processing of each node. But interceptor...
I would like something to this effect. Basically, I want both the error message and error code to be included. I tried attaching objects (and hacking around meta-schema), but that...