This file contains hidden or 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
p { | |
line-height: 18px; | |
} | |
.contactItem { | |
padding-left: 15px; | |
padding-right: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
} |
This file contains hidden or 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
{ | |
".ac": "Ascension Island", | |
".ad": "Andorra", | |
".ae": "United Arab Emirates", | |
".af": "Afghanistan", | |
".ag": "Antigua and Barbuda", | |
".ai": "Anguilla", | |
".al": "Albania", | |
".am": "Armenia", | |
".an": "Netherlands Antilles", |
This file contains hidden or 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
[ | |
{ | |
"country": "Afghanistan", | |
"language": "Pashto", | |
"twoLetter LangCode": "ps", | |
"threeLetterLangCode": "pus", | |
"cultureInfoCode": "ps-AF" | |
}, | |
{ | |
"country": "Afghanistan", |
This file contains hidden or 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
'use strict'; | |
angular.module('app') | |
.config(['$stateProvider', '$urlRouterProvider', function ($stateProvider, $urlRouterProvider) { | |
$stateProvider | |
.state('mainNotAuthorized.passwordForgotten', { | |
url: 'password-forgotten/:errorStatus', |
This file contains hidden or 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
const path = require('path') | |
const aliases = { | |
'@packages': './packages', | |
'@plugins': './src/plugins', | |
'@utils': './src/utils', | |
'@components': './src/components' | |
} | |
module.exports = { |