Skip to content

Instantly share code, notes, and snippets.

View tabirkeland's full-sized avatar

Taylor Birkeland tabirkeland

View GitHub Profile
@tabirkeland
tabirkeland / modal.html
Created April 20, 2018 01:31
ng2-pdf-viewer zoom implementation
<ion-header>
<ion-navbar>
<ion-title>{{ title }}</ion-title>
<ion-buttons end>
<button ion-button icon-only (click)="dismiss()">
<ion-icon name="close"></ion-icon>
</button>
</ion-buttons>
</ion-navbar>
@tabirkeland
tabirkeland / environment.interface.ts
Last active July 26, 2019 04:33
Ionic 3.9.2 Environment Variables
export interface Environment {
DEBUG : boolean;
API_URL : string;
WS_URL : string;
BASE_URL : string;
}