demarches-normaliennes/app/javascript/packs/application-old.js

26 lines
698 B
JavaScript
Raw Normal View History

import '../shared/polyfills';
import Rails from '@rails/ujs';
import * as ActiveStorage from '@rails/activestorage';
import jQuery from 'jquery';
2019-08-01 15:22:37 +02:00
import '../shared/page-update-event';
2019-02-13 14:16:22 +01:00
import '../shared/activestorage/ujs';
import '../shared/rails-ujs-fix';
2018-08-31 12:56:56 +02:00
import '../shared/safari-11-file-xhr-workaround';
import '../shared/remote-input';
import '../shared/franceconnect';
// Start Rails helpers
Rails.start();
ActiveStorage.start();
// Disable jQuery-driven animations during tests
if (process.env['RAILS_ENV'] === 'test') {
jQuery.fx.off = true;
}
// Export jQuery globally for legacy Javascript files used in the old design
2018-08-09 11:53:59 +02:00
jQuery.rails = Rails;
window.$ = jQuery;
window.jQuery = jQuery;