decioferreira / bootstrap-generators

Bootstrap-generators provides Twitter Bootstrap generators for Rails
MIT License
351 stars 77 forks source link

Remove deprecated use of :confirm in scaffold templates #12

Closed dacamo76 closed 11 years ago

dacamo76 commented 11 years ago

The :confirm option has been deprecated and will be removed in Rails 4.1.

This changes all instances of :confirm in the scaffold templates from:

:confirm => 'Are you sure?'

to

:data => { confirm: 'Are you sure?' }

According to https://github.com/rails/rails/pull/6613 it was deprecated in rails 3.2

decioferreira commented 11 years ago

Thank you for the PR.