massprogressive
massprogressive
Hi, I'm using Zurb Foundation CLI, installed it via npm and tried: `import 'jquery-lazy';` copied file to lib folder and tried: `import import './lib/jquery.lazy';` these solutions doesn't work for me,...
I've used the same import approach as if the first comment: ``` import $ from 'jquery'; window.$ = window.jQuery = $; ```
The only solution that I found was pasting import statements on top of the jquery.lazy.js file: ``` import $ from 'jquery'; window.$ = window.jQuery = $; /*! * jQuery &...