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
| { | |
| "apiEndpoints": { | |
| "authEndpoint": "http://ecsb00100ea6.epam.com:9191", | |
| "userEndpoint": "http://ecsb00100ea6.epam.com:9191", | |
| "rulesEndpoint": "http://ecsb00100ea6.epam.com:8040", | |
| "refDataEndpoint": "http://ecsb00100ea6.epam.com:8091", | |
| "regBrokerDataEndpoint": "http://ecsb00100ea6.epam.com:8060" | |
| }, | |
| "navigation": { | |
| "iam": { |
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
| import {createStore, applyMiddleware, compose} from 'redux' | |
| import {routerMiddleware} from 'react-router-redux' | |
| import thunk from 'redux-thunk' | |
| import createHistory from 'history/createBrowserHistory' | |
| import rootReducer from '../modules' | |
| export const history = createHistory() | |
| const initialState = {} | |
| const enhancers = [] |
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
| <!--Copy angular 2 www folder into cordova www folder --> | |
| <hook type="before_prepare" src="customHooks/copy-angular2-to-cordova.js"/> |
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
| /** | |
| * Created by anjum on 29/05/17. | |
| */ | |
| const fs = require('fs'); | |
| const execSync = require('child_process').execSync; | |
| module.exports = function(context) { | |
| console.log(‘Copying angular 2 "./www" folder.’); | |
| const basePath = context.opts.projectRoot; |
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
| background: -moz-radial-gradient(right,90% 50px,#A37320,#EFEA7E,#A37320); | |
| background: -webkit-radial-gradient(90% 50px at right,#A37320,#EFEA7E,#A37320); | |
| background: radial-gradient(90% 50px at right,#A37320,#EFEA7E,#A37320); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| text-decoration: underline; | |
| border-bottom: 1px solid #A37320; |
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
| // -------------------------------------------------- | |
| // Flexbox SASS mixins | |
| // The spec: http://www.w3.org/TR/css3-flexbox | |
| // -------------------------------------------------- | |
| // Flexbox display | |
| @mixin flexbox() { | |
| display: -webkit-box; | |
| display: -moz-box; | |
| display: -ms-flexbox; |
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
| import {Injectable} from '@angular/core'; | |
| import {LoadingController} from 'ionic-angular'; | |
| export interface ILoaderParams { | |
| message?: string; | |
| time?: number; | |
| dismissOnPageChange?: boolean | |
| } | |
| @Injectable() |
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
| /** | |
| * Created by Anjum on 3/11/16. | |
| */ | |
| /// <reference path="../../utils/session/session.utils.ts" /> | |
| /// <reference path="../../services/skychaincontext.ts" /> | |
| /// <reference path="../../services/common/footer.card.service.ts" /> | |
| /// <reference path="../../_libraries.ts" /> | |
| /// <reference path="../../services/modals/app.modals.ts" /> | |
| module app.widgets.directives { |
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
| /** | |
| * A generic confirmation for risky actions. | |
| * Usage: Add attributes: ng-really-message="Are you sure"? ng-really-click="takeAction()" function | |
| */ | |
| (function () { | |
| 'use strict'; | |
| angular | |
| .module('c2k') | |
| .directive('ngReallyClick', [ngReallyClickFunction]); |
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
| (function () { | |
| 'use strict'; | |
| angular | |
| .module('c2k') | |
| .directive('ngReallyClick', [ngReallyClickFunction]); | |
| function ngReallyClickFunction() { | |
| return { | |
| restrict: 'A', | |
| link: linkFn |
NewerOlder