-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Release Online Banking App 1.3.0 (#100)
* Fix #13, Broken gulp styles task * Fix #15, Adds Basic travis.yml * Fix #10, Update Login Page Style * Update the copy * Fix #18, Updated Nav Styles * Fix #20, pagination issue * Add eslint for project * Fix login flow Able to open pages even after auth data cleared, Access token not added even if auth data present on page refresh Remove duplicate authentication.html Also fix the width of the login screen page Added Client ID in LocalStorage for later access * Accounts UI added Fixed Datatable Issue * Feat: Recent Transactions, Fix #15 Minor Fixes to recent transactions features Fix #28, Rename recent-transaction to recent-transactions * Fix #14, Charges Feature Added * Fix #23, Added Transfer Option * Added Multi Language Support Fix #33, Refactored all views for multi lang support * Feat: Beneficiaries Module Fix #31, Added Beneficiaries List feat: Add Beneficiary fix #40 Added Delete beneficiary feature Resolved Merge Conflict on Edit Beneficiary Feature Fix #38, Accounts UI Crashing clear form * Refactor Unused client list and client view Fix #48, Added 404 page, redirecting to 404 when not found Fix #55, refactor into accounts * #38 Maps en locale to preferred and fallback language. Adds escape sanitization strategy. * Updated gulp scripts to make a deployable build Fix #70 added hashed builds * Refactor tenant into constants file * Added loan application form * Fixes #42, Added Third Party Transfer Feature * added dashboard cards Added charts to dashboard * Reopens #49 * updated account details * Updated bower dependecies and updated breaking UI code * Login error handle Handle Login Code * fix: Issue #45 - Values are not exceeding Boundaries * fix: Issue#65 Prevent access to login page if user already logged in * Fix #75 Removed redundant files from tpt directory * Fix #68 Clear textfields on pressing Cancel * fix: #78 added hamburger on the left side * fix: #88 added client image info * Added Routes for forgot and register screens - Added Register Screen - Added Forgot Screen API not available on Staging Create register and forgot api fix * Added http interceptor * Update Self-Service App Version
- Loading branch information
Showing
97 changed files
with
13,481 additions
and
1,285 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"plugins": [ | ||
"angular" | ||
], | ||
"rules": { | ||
"angular/controller-as": 0 | ||
}, | ||
"env": { | ||
"browser": true, | ||
"jasmine": true, | ||
"jquery": true | ||
}, | ||
"globals": { | ||
"angular": true | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
language: node_js | ||
node_js: | ||
- "4" |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
(function(){ | ||
'use strict'; | ||
(function () { | ||
'use strict'; | ||
|
||
angular.module('selfService', [ | ||
|
||
angular.module('selfService', [ | ||
'ngAnimate', | ||
'ngCookies', | ||
'ngSanitize', | ||
'ngResource', | ||
'ui.router', | ||
'ngMaterial', | ||
'nvd3', | ||
'md.data.table' | ||
|
||
'md.data.table', | ||
'pascalprecht.translate' | ||
]) | ||
|
||
})(); |
Oops, something went wrong.