Patrick Jones

Results 8 comments of Patrick Jones

Here we go @tegon. https://github.com/plataformatec/devise/blob/2e5b5fcd705b06c518ab0156b96badb91c4cb6ea/lib/devise/models/database_authenticatable.rb#L210 Do you think it makes sense to do something like: ``` def send_email_changed_notification? self.class.send_email_changed_notification && email_changed? && !@skip_email_changed_notification && !user.confirmed! end ``` In our app,...

Tudo bom @tegon. Sem pressa. It's not that important of an issue. Just kind of a weird edge case that could potentially be fixed. I can offer up a PR...

@jkimmeyer @javierjulio Do you guys know if anyone is still maintaining this repo? Otherwise I'm going to fork it, switch the dependency to sassc and push a new version to...

@javierjulio I'm a bit confused. This repo is depending on sass **spec.add_dependency "sass", [">= 3.3.0"]** The sass-rails gem is now a wrapper for sassc-rails gem, which is great, but if...

Relying on sass-rails, which is now just sassc-rails makes sense. Either way, our company site is still on Foundation 5 and doesn't plan on upgrading to 6, so I might...

Same issue here. Have you been able to find a fix? I've tried everything, even the solution that @laojie9 proposed but I'm still not getting anything worthwhile.

This was what we ended up using. About the same: ``` @media (max-width: 768px) { .modal-dialog { margin: 1rem; max-width: calc(100vw - 2rem); width: calc(100vw - 2rem); } .modal-content {...