.
├── app
│ ├── components
│ │ ├── about
│ │ │ ├── about.component.css
│ │ │ ├── about.component.html
│ │ │ ├── about.component.spec.ts
│ │ │ ├── about.component.tns.css
│ │ │ ├── about.component.tns.html
│ │ │ ├── about.component.ts
│ │ │ └── about.routes.ts
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.tns.html
│ │ ├── app.component.ts
│ │ ├── app.routes.ts
│ │ ├── home
│ │ │ ├── home.component.css
│ │ │ ├── home.component.html
│ │ │ ├── home.component.spec.ts
│ │ │ ├── home.component.tns.css
│ │ │ ├── home.component.tns.html
│ │ │ ├── home.component.ts
│ │ │ └── home.routes.ts
│ │ ├── index.ts
│ │ └── operators.ts
│ └── frameworks
│ ├── analytics
│ │ ├── analytics.module.ts
│ │ ├── index.ts
│ │ └── services
│ │ ├── analytics.service.spec.ts
│ │ └── analytics.service.ts
│ ├── core
│ │ ├── core.module.ts
│ │ ├── decorators
│ │ │ ├── base.component.ts
│ │ │ └── utils.ts
│ │ ├── directives
│ │ │ ├── index.ts
│ │ │ ├── platform.directive.spec.ts
│ │ │ └── platform.directive.ts
│ │ ├── index.ts
│ │ ├── interfaces
│ │ │ ├── iconsole.ts
│ │ │ ├── ilang.ts
│ │ │ ├── index.ts
│ │ │ └── iwindow.ts
│ │ ├── services
│ │ │ ├── console.service.ts
│ │ │ ├── index.ts
│ │ │ ├── log.service.spec.ts
│ │ │ ├── log.service.ts
│ │ │ ├── router-extensions.service.ts
│ │ │ └── window.service.ts
│ │ ├── testing
│ │ │ ├── index.ts
│ │ │ ├── mocks
│ │ │ │ ├── mock-location-strategy.ts
│ │ │ │ ├── ng2-config.mock.ts
│ │ │ │ ├── router-extensions.mock.ts
│ │ │ │ └── window.mock.ts
│ │ │ └── providers
│ │ │ ├── core.ts
│ │ │ ├── http.ts
│ │ │ └── router.ts
│ │ └── utils
│ │ ├── config.spec.ts
│ │ ├── config.ts
│ │ ├── index.ts
│ │ ├── type.ts
│ │ ├── view-broker.spec.ts
│ │ └── view-broker.ts
│ ├── electron
│ │ ├── index.ts
│ │ ├── services
│ │ │ └── event.service.ts
│ │ └── utils
│ │ ├── desktop-config.spec.ts
│ │ └── desktop-config.ts
│ ├── i18n
│ │ ├── actions
│ │ │ ├── index.ts
│ │ │ └── multilingual.action.ts
│ │ ├── common
│ │ │ ├── category.common.ts
│ │ │ └── index.ts
│ │ ├── components
│ │ │ ├── index.ts
│ │ │ ├── lang-switcher.component.css
│ │ │ ├── lang-switcher.component.html
│ │ │ ├── lang-switcher.component.spec.ts
│ │ │ ├── lang-switcher.component.tns.css
│ │ │ ├── lang-switcher.component.tns.html
│ │ │ ├── lang-switcher.component.tns.ios.css
│ │ │ └── lang-switcher.component.ts
│ │ ├── effects
│ │ │ ├── index.ts
│ │ │ └── multilingual.effect.ts
│ │ ├── index.ts
│ │ ├── multilingual.module.ts
│ │ ├── reducers
│ │ │ ├── index.ts
│ │ │ └── multilingual.reducer.ts
│ │ ├── services
│ │ │ ├── i18n.providers.ts
│ │ │ ├── index.ts
│ │ │ ├── multilingual.service.spec.ts
│ │ │ └── multilingual.service.ts
│ │ ├── states
│ │ │ ├── index.ts
│ │ │ └── multilingual.state.ts
│ │ └── testing
│ │ ├── index.ts
│ │ └── mocks
│ │ ├── ng2-config-multilang.mock.ts
│ │ ├── ng2-translate-loader.mock.ts
│ │ └── ng2-translate.mock.ts
│ ├── ngrx
│ │ ├── index.ts
│ │ └── state
│ │ └── app.state.ts
│ ├── sample
│ │ ├── actions
│ │ │ ├── index.ts
│ │ │ └── name-list.action.ts
│ │ ├── common
│ │ │ ├── category.common.ts
│ │ │ └── index.ts
│ │ ├── components
│ │ │ ├── index.ts
│ │ │ ├── navbar.component.css
│ │ │ ├── navbar.component.html
│ │ │ ├── navbar.component.tns.css
│ │ │ ├── navbar.component.tns.html
│ │ │ ├── navbar.component.ts
│ │ │ ├── toolbar.component.css
│ │ │ ├── toolbar.component.html
│ │ │ ├── toolbar.component.tns.css
│ │ │ ├── toolbar.component.tns.html
│ │ │ └── toolbar.component.ts
│ │ ├── effects
│ │ │ ├── index.ts
│ │ │ └── name-list.effect.ts
│ │ ├── index.ts
│ │ ├── reducers
│ │ │ ├── index.ts
│ │ │ └── name-list.reducer.ts
│ │ ├── sample.module.ts
│ │ ├── services
│ │ │ ├── index.ts
│ │ │ ├── name-list.service.spec.ts
│ │ │ └── name-list.service.ts
│ │ └── states
│ │ ├── index.ts
│ │ └── name-list.state.ts
│ └── test
│ ├── e2e
│ │ └── dropdowns.ts
│ ├── index.ts
│ └── shorthand
│ └── ng2-jasmine.ts
├── assets
│ ├── app.config.json
│ ├── data.json
│ ├── favicon
│ │ ├── favicon-DEV.ico
│ │ └── favicon-PROD.ico
│ ├── i18n
│ │ ├── bg.json
│ │ ├── en.json
│ │ ├── es.json
│ │ ├── fr.json
│ │ └── ru.json
│ ├── logo.icns
│ ├── logo.ico
│ └── svg
│ ├── more.svg
│ └── smile.svg
├── css
│ └── main.css
├── filestructure.md
├── index.html
├── main.desktop.ts
├── main.web.prod.ts
├── main.web.ts
├── package.json
├── system-config.ts
├── tsconfig.json
└── web.module.ts
Created
December 26, 2016 20:30
-
-
Save dancancro/080454e4affa117b007470bda661bf56 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment