Completed
Push — master ( b50753...137f43 )
by Florian
03:57
created

view/frontend/requirejs-config.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 15
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 15
c 0
b 0
f 0
wmc 0
rs 10
cc 0
nc 1
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
/**
2
 * PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
3
 * it under the terms of the GNU Lesser General Public License as published by
4
 * the Free Software Foundation, either version 3 of the License, or
5
 * (at your option) any later version.
6
 *
7
 * PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
8
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 * GNU Lesser General Public License for more details.
11
 *
12
 * You should have received a copy of the GNU Lesser General Public License
13
 * along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
14
 *
15
 * PHP version 5
16
 *
17
 * @category  Payone
18
 * @package   Payone_Magento2_Plugin
19
 * @author    FATCHIP GmbH <[email protected]>
20
 * @copyright 2003 - 2016 Payone GmbH
21
 * @license   <http://www.gnu.org/licenses/> GNU Lesser General Public License
22
 * @link      http://www.payone.de
23
 */
24
/*jshint browser:true jquery:true*/
25
/*global alert*/
26
var config = {
27
    config: {
28
        mixins: {
29
            'Magento_Checkout/js/view/shipping': {
30
                'Payone_Core/js/view/shipping-mixin': true
31
            },
32
            'Magento_Checkout/js/view/billing-address': {
33
                'Payone_Core/js/view/billing-address-mixin': true
34
            },
35
            'Magento_Checkout/js/view/payment/default': {
36
                'Payone_Core/js/view/payment/default-mixin': true
37
            }
38
        }
39
    }
40
};
41