Lior Chen
Lior Chen
When I change the default validation method to something other than watch: ``` $validationProvider.setValidMethod('submit'); ``` The form validation does not trigger. Meaning, that after clicking "submit", the success method will...
In regex validators (such as number) when the value is undefined (or null) the validator should return success, to comply with the html5 number input. Since this is a breaking...
When trying to detect mode, it checked that `model.exports` is defined and assumed that means that require is also defined. However, this is not always the case; some libraries other...
Changed the DELETE method cascade functionality so it would only delete documents which are dependent on the deleted document. Also added a new flag to disable this cascading delete: "--no-delete-cascade"...
[Chai's API](http://chaijs.com/api/bdd/) allows `exist` to be use either as a property, or as a function: `expect(foo).to.exist();`. However, when using chai-jquery (on non-jQuery object) only the former option can be used;...
Seems the constructor signature was accidentally missing
I am using deno_core to create a Js runtime (following the great https://deno.com/blog/roll-your-own-javascript-runtime blog post) Whenever I get an error evaluating some js source, I throw the JsError and report...
- Replace object access `rawHeaders['mime-type']` with the headers object - Change header lookup from 'mime-type' to 'content-type' (HTTP standard) - Fix regex to capture multi-character charset values ([^;]+) - Add...