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
| module Main exposing (..) | |
| import Html exposing (text, div, Html) | |
| import Html.App exposing (program) | |
| import Input | |
| import Helper | |
| main : Program Never | |
| main = |
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
| \section*{Acknowledgments} | |
| \addcontentsline{toc}{section}{\numberline{}Acknowledgments} | |
| \tableofcontents | |
| \thispagestyle{empty} | |
| \cleardoublepage | |
| \setcounter{page}{1} |
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
| https://github.com/ngrx/platform | |
| install @ngrx - npm install @ngrx/store --save | |
| create bgo store module - ng g m bgo-store | |
| create app.state.ts | |
| create ui.actions.ts | |
| import { Action } from '@ngrx/store'; | |
| create ui.reducer.ts |
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
| static forRoot(): ModuleWithProviders { | |
| return { | |
| ngModule: CoreModule, | |
| providers: [ | |
| ProfileService, | |
| UINotificationService, | |
| FormatSelectionService, | |
| LoaderService, | |
| JiraIssueService, | |
| WorklogService, |
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
| class Gen<T> { | |
| value: any = null; | |
| constructor(value: any) { | |
| this.value = value; | |
| } | |
| } | |
| class Component { | |
| instance: string = null; | |
| } |
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
| /** | |
| * Original implementation | |
| * https://gist.github.com/thinkphp/1448754 | |
| **/ | |
| class Nodee { | |
| public value: number; | |
| public left: Nodee; | |
| public right: Nodee; | |
| public level: number; |
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 * as React from "react"; | |
| import * as ReactDOM from "react-dom"; | |
| import * as CSSModules from "react-css-modules"; | |
| import { Input, InputProps } from "react-toolbox/lib/input"; | |
| declare var document: any; | |
| declare var window: any; | |
| const styles = require("./PhoneInput.scss"); |
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 * as moment from 'moment'; | |
| /** | |
| * @example | |
| * let date = new DateAutotransformation('061218'); | |
| * date.parsed() --> { | |
| * original: "061218", | |
| * parsed:"06/12/2018" | |
| * } | |
| * ------------------------------------------------------------- |
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 "colors"; | |
| @import "mixins"; | |
| .esporter-datapicker{ | |
| max-width:580px; | |
| margin:0 auto; | |
| border: 1px solid @eSporter-featured-video-dark-gray; | |
| overflow: hidden; | |
| margin-top:10px; | |
| table{ |
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
| <div class="esporter-datapicker"> | |
| <table> | |
| <tr> | |
| <td class="header navigation" colspan="1" ng-click="$ctrl.prevMonth($event)"> | |
| <span><</span> | |
| </td> | |
| <td class="header" colspan="5">{{ $ctrl.fullMonth }} {{ $ctrl.year }}</td> | |
| <td class="header navigation" colspan="1" ng-click="$ctrl.nexMonth($event)"> | |
| <span>></span> | |
| </td> |
NewerOlder