This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>page title</title> | |
</ head> | |
<body> | |
//webpage content | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MSG_FACTORY = { | |
'INSUFFICIENT_BALANCE': 'You have not sufficient balance in your account', | |
'WITHDRAW_LIMIT': 'Withdrawal amount is more than limit', | |
'WITHDRAW': 'Money withdrawn from your account', | |
'DEPOSIT': 'Money deposited to your account' | |
} | |
/* This module is to notify the user whenever there is an account balance related alert required, | |
Its takes input and alert based on msg type */ | |
function notifyUser(msg){ |