i'm using fullpage.js in project, , according plugin's documentation must add scrolloverflow.js
dependency in order use of plugin's options.
i'm trying manage browserify , i'm facing issue when comes add dependency.
the 'require' part of code so:
jquery = require('jquery') require('../vendor/scrolloverflow.min.js')(jquery) require('../vendor/jquery.fullpage.min.js')
when run code error in console, breaks script:
cannot read property '0' of undefined
the error resides in scrolloverflow.min.js
script. not having of experience browserify guess problem has way i'm requiring script, don't have idea how fix that.
Comments
Post a Comment