contributte / live-form-validation

:no_entry: Nice client-side live form validation for Nette Forms.
https://contributte.org/packages/contributte/live-form-validation.html
BSD 3-Clause "New" or "Revised" License
59 stars 24 forks source link

add method to remove icon from help block #16

Closed misaon closed 8 years ago

misaon commented 8 years ago

Hi, please add method for this. I using font-awesome instead of glyphicon and i have useless class in my code.

Thanx

Robyer commented 8 years ago

Hi, feel free to send pull request. I don't have too much time these days.

rolandtoth commented 8 years ago

I use this to remove:

if (window.LiveForm) {
    LiveForm.setOptions({
        'messageErrorPrefix': ''
    });
}
Robyer commented 8 years ago

Aha, thanks for mentioning that.

@misaon If you don't want to see any prefix, just set it empty in LiveForm options, as mentioned above. Or set it regarding your needs, just look at live-form-validation.js source code for example.