Completed
Push — master ( 05378f...53bf0b )
by Johnny
36:25 queued 32:00
created

???.methods.confirmDeletingItem   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 2
nc 2
nop 2
1
export default {
2
    methods: {
3
        confirmDeletingItem: function (id, row_id) {
4
            if (confirm('Are you sure?')) {
5
                document.getElementById(row_id + id).submit();
6
            }
7
        }
8
    }
9
}