pflaenz.li-Symfony/assets/app.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-04-24 16:59:51 +02:00
/*
* Welcome to your app's main JavaScript file!
*
* We recommend including the built version of this JavaScript file
* (and its CSS file) in your base layout (base.html.twig).
*/
// any CSS you import will output into a single css file (app.css in this case)
import './styles/app.scss';
2021-05-06 13:21:07 +02:00
const $ = require('jquery');
2021-04-24 16:59:51 +02:00
// start the Stimulus application
2021-05-06 13:21:07 +02:00
require('bootstrap');
2021-04-27 23:22:12 +02:00
// Fontawesome
import '@fortawesome/fontawesome-free/js/fontawesome'
import '@fortawesome/fontawesome-free/js/solid'
import '@fortawesome/fontawesome-free/js/regular'
import '@fortawesome/fontawesome-free/js/brands'
2021-05-04 11:59:08 +02:00
// Friendly captcha
2022-01-18 17:50:54 +01:00
import { WidgetInstance } from 'friendly-challenge';
function doneCallback(solution) {
$('#registration_form_captcha_solution').val(solution);
}
const element = document.querySelector('#captcha');
const options = {
doneCallback: doneCallback,
sitekey: 'FCMVL79DP1G5K1K0',
}
const widget = new WidgetInstance(element, options);
widget.start()
2021-05-04 14:28:06 +02:00
// Dsiplay Filename when uploading
2022-01-18 17:50:54 +01:00
document.querySelector('.custom-file-input').addEventListener('change', function (e) {
var fileName = document.getElementById('offering_form_photo').files[0].name;
2021-05-04 14:28:06 +02:00
var nextSibling = e.target.nextElementSibling
nextSibling.innerText = fileName
2021-05-27 16:40:00 +02:00
})
// Cookie-consent
import 'cookie-notice/dist/cookie.notice.min.js'