-
https://codeclimate.com/github/bcardarella/client_side_validations/issues/categories/duplication
Tests pass but Is it ok to write:
```
module ClientSideValidations::ActiveModel
module Inclusion
…
-
How can I remove error messages from the form?
Here is a sneak peak of my code, but is not working
```
$('.modal').on('hidden.bs.modal',function(){
$this = $(this);
$form = …
-
- [x] Make all ruby tests pass
- [x] Make all javascript tests pass
- [x] Use Method#prepend instead of alias_method_chain
- [x] Add javascript support for case insensitive confirmation validator
…
-
Turbolinks 5 changed event names, so we need to adjust something in this gem
### Current issues
1. There is a `Turbolinks.supported` property which should be checked before setting the right event to …
-
Turbolinks enabled
How to reproduce:
1. Visit a login page with a form `#new_user` with some validations on the `User` model
2. Follow a turbolinks link to a signup page, which contains another `…
-
After following instructions on README, and after adding to a form (standard rails), I keep getting this error in javascript after validation on a field:
```js
rails.validations.self...js?body=1:618…
-
``` html
@
```
it looks like fine :
![image](https://cloud.githubusercontent.com/assets/3498786/7697608/d47b463a-fe3b-11e4-9635-da990f533f34.png)
But when validation failed and ap…
-
In 3.2.7, ClientSideValidations::ActiveRecord::Middleware generates a SQL query that uses syntax which doesn't work in MySQL, and possibly other engines (I've only found matching syntax in Oracle):
T…
-
I tried using validates: numericality with allow_nil and it works great, except for one thing. The only alphabetic keystroke that is allowed is the letter 'e'. I assume this is because of scientific…
-
I want to check my password with zxcvbn.js.
I have written a working local validator called "zxcvbn"
```
// The validator variable is a JSON Object
// The selector variable is a jQuery Object
window.…