-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Destroy multiImageSelectors before instantiating new ones #1728
Conversation
function destroyExistingImageSelector() { | ||
var pagination = $('[data-panel-image-pagination]', panel); | ||
pagination.html(''); | ||
pagination.next('.' + thumbsListContainer.attr('class')).remove(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mixed double and single quotes.
@@ -27,6 +29,12 @@ | |||
addChangeLinkBehavior(); | |||
} | |||
|
|||
function destroyExistingImageSelector() { | |||
var pagination = $('[data-panel-image-pagination]', panel); | |||
pagination.html(''); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mixed double and single quotes.
@@ -27,6 +29,12 @@ | |||
addChangeLinkBehavior(); | |||
} | |||
|
|||
function destroyExistingImageSelector() { | |||
var pagination = $('[data-panel-image-pagination]', panel); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mixed double and single quotes.
5ba65b5
to
eb9c343
Compare
Fixes #1724