File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
app/code/Magento/Checkout/view/frontend/web/js/view/cart Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 2
2
* Copyright © 2015 Magento. All rights reserved.
3
3
* See COPYING.txt for license details.
4
4
*/
5
- /*global define*/
6
5
define (
7
6
[
8
7
'uiComponent' ,
@@ -15,12 +14,16 @@ define(
15
14
return Component . extend ( {
16
15
17
16
isLoading : totalsService . isLoading ,
17
+
18
+ /**
19
+ * @override
20
+ */
18
21
initialize : function ( ) {
19
22
this . _super ( ) ;
20
- totalsService . totals . subscribe ( function ( ) {
23
+ totalsService . totals . subscribe ( function ( ) {
21
24
window . dispatchEvent ( new Event ( 'resize' ) ) ;
22
25
} ) ;
23
- shippingService . getShippingRates ( ) . subscribe ( function ( ) {
26
+ shippingService . getShippingRates ( ) . subscribe ( function ( ) {
24
27
window . dispatchEvent ( new Event ( 'resize' ) ) ;
25
28
} ) ;
26
29
}
You can’t perform that action at this time.
0 commit comments