Check if button element exists when triggering added_to_cart (#51449)
This commit is contained in:
parent
cf7fd8303c
commit
2e3013555e
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: fix
|
||||||
|
|
||||||
|
Fix bug where manually triggering `added_to_cart` event without a button element caused an Exception.
|
|
@ -173,6 +173,8 @@ jQuery( function( $ ) {
|
||||||
* Update cart page elements after add to cart events.
|
* Update cart page elements after add to cart events.
|
||||||
*/
|
*/
|
||||||
AddToCartHandler.prototype.updateButton = function( e, fragments, cart_hash, $button ) {
|
AddToCartHandler.prototype.updateButton = function( e, fragments, cart_hash, $button ) {
|
||||||
|
// Some themes and plugins manually trigger added_to_cart without passing a button element, which in turn calls this function.
|
||||||
|
// If there is no button we don't want to crash.
|
||||||
$button = typeof $button === 'undefined' ? false : $button;
|
$button = typeof $button === 'undefined' ? false : $button;
|
||||||
|
|
||||||
if ( $button ) {
|
if ( $button ) {
|
||||||
|
@ -222,6 +224,11 @@ jQuery( function( $ ) {
|
||||||
* Update cart live region message after add/remove cart events.
|
* Update cart live region message after add/remove cart events.
|
||||||
*/
|
*/
|
||||||
AddToCartHandler.prototype.alertCartUpdated = function( e, fragments, cart_hash, $button ) {
|
AddToCartHandler.prototype.alertCartUpdated = function( e, fragments, cart_hash, $button ) {
|
||||||
|
// Some themes and plugins manually trigger added_to_cart without passing a button element, which in turn calls this function.
|
||||||
|
// If there is no button we don't want to crash.
|
||||||
|
$button = typeof $button === 'undefined' ? false : $button;
|
||||||
|
|
||||||
|
if ( $button ) {
|
||||||
var message = $button.data( 'success_message' );
|
var message = $button.data( 'success_message' );
|
||||||
|
|
||||||
if ( !message ) {
|
if ( !message ) {
|
||||||
|
@ -235,6 +242,7 @@ jQuery( function( $ ) {
|
||||||
.delay(1000)
|
.delay(1000)
|
||||||
.text( message )
|
.text( message )
|
||||||
.attr( 'aria-relevant', 'all' );
|
.attr( 'aria-relevant', 'all' );
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue