12 lines
265 B
Plaintext
12 lines
265 B
Plaintext
function msgWarningController($scope, $modalInstance, dataForm) {
|
|
init();
|
|
|
|
function init() {
|
|
$scope.msgHeader = dataForm.msgHeader;
|
|
$scope.msg = dataForm.msg;
|
|
}
|
|
|
|
$scope.ok = function () {
|
|
$modalInstance.close("OK");
|
|
};
|
|
}; |