functions.js 176 B

1234567891011
  1. jQuery(document).ready(function($) {
  2. (function() {
  3. if (typeof AOS === 'undefined') {
  4. return;
  5. };
  6. console.log("hello");
  7. AOS.init({once: true});
  8. })();
  9. })