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
import * as React from 'react'; | |
interface IAddressDetails { | |
address1: string; | |
address2: string; | |
address3: string; | |
city: string; | |
postcode: string; | |
country: string; | |
id: number; |
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
{ | |
"files.autoSave": "onFocusChange", | |
"editor.formatOnSave": true, | |
"prettier.eslintIntegration": true, | |
"autoimport.filesToScan": "**/*.{ts,tsx}", | |
"tslint.enable": true, | |
"tslint.autoFixOnSave": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"window.zoomLevel": 0, | |
"editor.rulers": [120], |
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
[user] | |
name = Vishal Sakaria | |
email = [email protected] | |
[credential] | |
helper = osxkeychain | |
[color] | |
ui = true | |
[filter "media"] | |
clean = git-media-clean %f | |
smudge = git-media-smudge %f |
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
# bash/zsh completion support for core Git. | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# The contained completion routines provide support for completing: | |
# | |
# *) local and remote branch names | |
# *) local and remote tag names |
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
import { Component, Input, OnInit} from "@angular/core"; | |
import { TooltipService } from "./tooltip.service"; | |
import { Sanitizer } from "../../../utils/eh.sanitizer.util.service"; | |
import { SafeHtml } from "@angular/platform-browser"; | |
@Component({ | |
selector: "tooltip", | |
templateUrl: "./tooltip.component.html", | |
styles: [` |
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
import { inject, TestBed } from "@angular/core/testing"; | |
import { SessionService } from "./session.service"; | |
describe("SessionService", () => { | |
let sessionService: SessionService; | |
beforeEach(() => { | |
TestBed.configureTestingModule({ | |
providers: [SessionService] |
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
var Internationalisation = (function ($) { | |
var title, ctaText, ctaLink, continuteText, modalHTML, modalText; | |
var pageMask = $('#page-mask'); | |
var init = function () { | |
makeRequest(); | |
}; |
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
import { async, TestBed, fakeAsync, tick } from "@angular/core/testing"; | |
import { Observable } from "rxjs"; | |
import { TooltipComponent } from "./tooltip.component"; | |
import { TooltipService } from "./tooltip.service"; | |
import { Sanitizer } from "../../../utils/eh.sanitizer.util.service"; | |
class MockToolTipService { |
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
import { async, inject, TestBed } from "@angular/core/testing"; | |
import { Http, HttpModule, BaseRequestOptions, RequestMethod, Response, ResponseOptions } from "@angular/http"; | |
import { MockBackend } from "@angular/http/testing"; | |
import { Observable } from "rxjs"; | |
import { MockSessionService } from "../../mocks/session.service.mock"; | |
import { QMSService } from "./qms.service"; | |
import { SessionService } from "../session/session.service"; | |
NewerOlder