Merge pull request #24818 from roksprogar/master

fixed the jQuery data() caching issue
This commit is contained in:
Rodrigo Primo 2019-12-13 14:33:09 -03:00 committed by GitHub
commit 35053e418f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ jQuery( function( $ ) {
var data = {};
$.each( $thisbutton.data(), function( key, value ) {
$.each( $thisbutton[0].dataset, function( key, value ) {
data[ key ] = value;
});