ENDRPrint/.svn/pristine/38/381dd75847dc1fb5d52abc98ca1b782f42384830.svn-base

12 lines
265 B
Plaintext
Raw Permalink Normal View History

2024-08-14 10:33:27 +07:00
function msgWarningController($scope, $modalInstance, dataForm) {
init();
function init() {
$scope.msgHeader = dataForm.msgHeader;
$scope.msg = dataForm.msg;
}
$scope.ok = function () {
$modalInstance.close("OK");
};
};