Browse Source

Fix jQuery deprecation warnings

pull/238/head
Felipe Dalcin 3 years ago
parent
commit
0458a73bea
  1. 4
      assets/scripts/routes/common.js
  2. 6
      dist/mix-manifest.json
  3. 2
      dist/scripts/aldine.js
  4. 60
      dist/scripts/aldine.js.LICENSE.txt
  5. 2
      dist/scripts/catalog-admin.js
  6. 24
      dist/scripts/catalog-admin.js.LICENSE.txt
  7. 2
      dist/styles/aldine.css

4
assets/scripts/routes/common.js

@ -20,11 +20,11 @@ export default {
let anchorUponArrival = document.location.hash; let anchorUponArrival = document.location.hash;
setTimeout( function () { setTimeout( function () {
$( anchorUponArrival ).scrollTo( { duration: 1500 } ); $( anchorUponArrival ).scrollTo( { duration: 1500 } );
$( anchorUponArrival ).focus(); $( anchorUponArrival ).trigger( 'focus' );
}, 100 ); }, 100 );
} }
} ); } );
$( '.js-header-nav-toggle' ).click( event => { $( '.js-header-nav-toggle' ).on( 'click', event => {
event.preventDefault(); event.preventDefault();
$( '.header__nav' ).toggleClass( 'header__nav--active' ); $( '.header__nav' ).toggleClass( 'header__nav--active' );
} ); } );

6
dist/mix-manifest.json vendored

@ -1,9 +1,9 @@
{ {
"/scripts/aldine.js": "/scripts/aldine.js?id=406c85ac4a3597cff962", "/scripts/aldine.js": "/scripts/aldine.js?id=24a75fe45555163733a7",
"/styles/aldine.css": "/styles/aldine.css?id=834982deb17473a14117", "/styles/aldine.css": "/styles/aldine.css?id=76e97fa4ea15ad04df17",
"/styles/editor.css": "/styles/editor.css?id=c45cb52a8c16b5642bf6", "/styles/editor.css": "/styles/editor.css?id=c45cb52a8c16b5642bf6",
"/scripts/call-to-action.js": "/scripts/call-to-action.js?id=14b2ac09b5fc52660522", "/scripts/call-to-action.js": "/scripts/call-to-action.js?id=14b2ac09b5fc52660522",
"/scripts/catalog-admin.js": "/scripts/catalog-admin.js?id=cd9e3b3256101628f1d9", "/scripts/catalog-admin.js": "/scripts/catalog-admin.js?id=2eac08aee521dcb38f28",
"/scripts/customizer.js": "/scripts/customizer.js?id=379b2c9a57b903659698", "/scripts/customizer.js": "/scripts/customizer.js?id=379b2c9a57b903659698",
"/scripts/customizer-toggle.js": "/scripts/customizer-toggle.js?id=21056ebdee6d334bd081", "/scripts/customizer-toggle.js": "/scripts/customizer-toggle.js?id=21056ebdee6d334bd081",
"/scripts/page-section.js": "/scripts/page-section.js?id=b62a3319a10d83a36aea" "/scripts/page-section.js": "/scripts/page-section.js?id=b62a3319a10d83a36aea"

2
dist/scripts/aldine.js vendored

File diff suppressed because one or more lines are too long

60
dist/scripts/aldine.js.LICENSE.txt vendored

@ -0,0 +1,60 @@
/*!
* Isotope v3.0.6
*
* Licensed GPLv3 for open source use
* or Isotope Commercial License for commercial use
*
* https://isotope.metafizzy.co
* Copyright 2010-2018 Metafizzy
*/
/*!
* Masonry layout mode
* sub-classes Masonry
* https://masonry.desandro.com
*/
/*!
* Masonry v4.2.1
* Cascading grid layout library
* https://masonry.desandro.com
* MIT License
* by David DeSandro
*/
/*!
* Outlayer v2.1.1
* the brains and guts of a layout library
* MIT license
*/
/*!
* Sizzle CSS Selector Engine v2.3.5
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2020-03-14
*/
/*!
* getSize v2.0.3
* measure size of elements
* MIT license
*/
/*!
* jQuery JavaScript Library v3.5.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2020-05-04T22:49Z
*/

2
dist/scripts/catalog-admin.js vendored

File diff suppressed because one or more lines are too long

24
dist/scripts/catalog-admin.js.LICENSE.txt vendored

@ -0,0 +1,24 @@
/*!
* Sizzle CSS Selector Engine v2.3.5
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2020-03-14
*/
/*!
* jQuery JavaScript Library v3.5.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2020-05-04T22:49Z
*/

2
dist/styles/aldine.css vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save