summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-11-18 09:15:03 +0100
committerAzul <azul@leap.se>2012-11-18 09:15:03 +0100
commit66e5f9d639a34df1912f7562223fa65d29183d96 (patch)
tree8249f6cd14e1ba859fd63a35f9f24456cb307d13 /config
parentb9fb554ca4cb45233bd1323047b357f649bd495b (diff)
parent6ba3366f778340ebeaa73fd53372368b16de6c98 (diff)
Merge branch 'feature-client-side-validations' into develop
Diffstat (limited to 'config')
-rw-r--r--config/initializers/client_side_validations.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/initializers/client_side_validations.rb b/config/initializers/client_side_validations.rb
new file mode 100644
index 0000000..2c73fa3
--- /dev/null
+++ b/config/initializers/client_side_validations.rb
@@ -0,0 +1,14 @@
+# ClientSideValidations Initializer
+
+# Uncomment to disable uniqueness validator, possible security issue
+# ClientSideValidations::Config.disabled_validators = [:uniqueness]
+
+# Uncomment the following block if you want each input field to have the validation messages attached.
+ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
+ unless html_tag =~ /^<label/
+ %{<div class="field_with_errors">#{html_tag}<label for="#{instance.send(:tag_id)}" class="message">#{instance.error_message.first}</label></div>}.html_safe
+ else
+ %{<div class="field_with_errors">#{html_tag}</div>}.html_safe
+ end
+end
+