You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't fully vetted this, but jQuery 3.x finally removed the ".context" property that was deprecated in version 1.1. This is being used to set up the element property on defaults and htmlOptions in this plug-in.
I basically just removed ".context" and left the setters to just $(this) and everything seems to work.
i.e
var defaults = {
element: $(this),
and
var htmlOptions = {
element: $(this),
Appreciate any feedback or if anyone finds an issue created by this change. The plug-in just doesn't work at all in 3.x otherwise.
The text was updated successfully, but these errors were encountered:
MouettE-SC
added a commit
to MouettE-SC/DualListBox
that referenced
this issue
Mar 4, 2017
I haven't fully vetted this, but jQuery 3.x finally removed the ".context" property that was deprecated in version 1.1. This is being used to set up the element property on defaults and htmlOptions in this plug-in.
I basically just removed ".context" and left the setters to just $(this) and everything seems to work.
i.e
var defaults = {
element: $(this),
and
var htmlOptions = {
element: $(this),
Appreciate any feedback or if anyone finds an issue created by this change. The plug-in just doesn't work at all in 3.x otherwise.
The text was updated successfully, but these errors were encountered: