demarches-normaliennes/app/views/users/feedbacks/create.js.erb
Pierre de La Morinerie 52afb41bab js: fix errors on browsers not supporting window.scroll options
IE and Safari only know about `window.scroll(x, y)`, and not the form
with options.
2020-04-06 18:30:15 +02:00

7 lines
163 B
Text

try {
window.scroll({ top: 0, left: 0, behavior: 'smooth' });
} catch {
window.scroll(0, 0);
}
<%= remove_element('#user-satisfaction') %>
<%= render_flash %>