vlascik

Results 27 comments of vlascik

It would be useful I guess, but at the moment I'm trying to make the validation pass (make input box green and hide the "success" message), even after I added...

I edited the comment above with more info, did it help by any chance? But the code is the same as in your example, passes() is called. Maybe the previous...

``` javascript var validator = new Dominar(document.getElementById('the-form'), { username: { rules: 'required|email|username_taken', triggers: ['keyup', 'change', 'focusout'], delay: 300 } })); ```

I've setup a fiddle which shows the problem here: http://jsfiddle.net/dnran7da/4/ I had to upload own dominar-standalone.js that i had to manually npm build from yesterday's master (before your latest commits),...

Yep, that was it, it works now, also a call to `.done(function() { passes() ` is not mentioned there. Thanks.

Also, it should say: ``` javascript .done(function() { passes(); }). .fail(function (response) { passes(false, response.responseJSON.message); }); ``` to show response message, `response.message` will be undefined

This would be most helpful, remote requests are firing several times needlessly, but maybe just store the last validated value and validation result for each field, and compare them before...

Same issue, same setup with e-component-css. Reproduction above demonstrates this problem: ``` git clone https://github.com/adc-mhaugen/sass-addon cd sass-addon npm install ember serve ```

I'm on 0.3.4, but I don't think there was any change on this in 0.3.5 the reason is I can see this in logs: ``` fs-tree-diff: [SassCompiler#12527 -> BroccoliMergeTrees: Merge...