Passed
Push — master ( fe1539...291954 )
by Guangyu
17:41 queued 11s
created

admin/app/controllers/settings/menu/menu.master.controller.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 8
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 0
1
'use strict';
2
3
app.controller('MenuMasterController', function($scope) {
4
5
	$scope.$on('handleEmitMenuChanged', function(event) {
6
		$scope.$broadcast('handleBroadcastMenuChanged');
7
	});
8
});
9