function msgWarningController($scope, $modalInstance, dataForm) { init(); function init() { $scope.msgHeader = dataForm.msgHeader; $scope.msg = dataForm.msg; } $scope.ok = function () { $modalInstance.close("OK"); }; };