Completed
Push — master ( bba01d...8c82ac )
by Sander
01:20
created

js/lib/API/contextmenus.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 13
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 13
rs 10
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
/* 
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
7
8
/* global API */
9
10
API.contextMenus = {
11
12
    create: API.api.contextMenus.create,
13
    update: API.api.contextMenus.update,
14
    remove: API.api.contextMenus.remove,
15
    removeAll: API.api.contextMenus.removeAll,
16
17
18
    /**
19
     * Event handlers from now on
20
     */
21
    onClicked: API.api.contextMenus.onClicked
22
};