jQuery noConflict issue
navgarcha opened this issue · 1 comments
navgarcha commented
The jQuery
object is being passed into the IIFE wrapper and being aliased to $
, however this aliased variable is only used when defining the jQuery plugin and the global jQuery
is being used throughout the rest of the code. This is fine but when jQuery.noConflict(true)
is executed this variable is no longer available.
Is it possible to make use of the aliased variable so we don't run into this issue?
casperin commented
Good work!