View file bio_crop/assets/js/app.js

File size: 727B
// import axios from 'axios';

// window.addEventListener('load', () => {

//   const api = 'http://www.colr.org/json/color/random';
//   const body = document.querySelector('body');

//   function randomColor() {
//     axios.get(api).then(res => {
//       let color = res.data.colors[0].hex;

//       if (!color) {
//         console.error('Random color could not be fetched.');
//       }

//       color = '#' + color;

//       body.style.backgroundColor = color;
//     }).catch(() => console.error('Random color could not be fetched.'));
//   }

//   randomColor();

//   setInterval(randomColor, 8000);

// });

console.log("Live");
$('#myModal').on('shown.bs.modal', function () {
  $('#myInput').trigger('focus')
})