[Selection] Use variable name expected by template

This commit is contained in:
Victor Woeltjen
2016-09-26 11:52:14 -07:00
parent 3b4239fbd9
commit cad255ce83

View File

@ -6,7 +6,7 @@ define([
function ContextMenuView(actions) { function ContextMenuView(actions) {
AngularView.call(this, template, function ($scope) { AngularView.call(this, template, function ($scope) {
$scope.actions = actions; $scope.menuActions = actions;
}); });
} }