Browse
For agents
About
MakeCommerce for WooCommerce
/
3.0.11
MakeCommerce for WooCommerce
v3.0.11
Switch version
4.1.0
4.0.8
trunk
1.0
1.0.1
1.0.2
1.0.3
1.1.0
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
1.1.7
2.0.0
2.1.0
2.1.1
2.1.2
2.1.3
2.1.4
2.1.5
2.2.0
2.2.1
2.2.2
All 96 releases
Overview
Code
makecommerce
/
payment
/
gateway
/
simplecheckout
/
js
/
cart-scripts.js
cart-scripts.js
in MakeCommerce for WooCommerce 3.0.11, at payment/gateway/simplecheckout/js/cart-scripts.js
4 lines
181 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
jQuery
(
document
)
.
on
(
"
updated_cart_totals
"
,
function
(
)
{
2
var
rand
=
Math
.
round
(
Math
.
random
(
)
*
100000
)
;
3
window
.
history
.
pushState
(
{
rand
:
rand
}
,
"
Rand
"
+
rand
,
"
./?r=
"
+
rand
)
;
4
}
)
;