fixed the jQuery data() caching issue
This commit is contained in:
parent
badb135bd6
commit
8f6cb9d058
|
@ -71,7 +71,7 @@ jQuery( function( $ ) {
|
|||
|
||||
var data = {};
|
||||
|
||||
$.each( $thisbutton.data(), function( key, value ) {
|
||||
$.each( $thisbutton[0].dataset, function( key, value ) {
|
||||
data[ key ] = value;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue