Skip to content

Instantly share code, notes, and snippets.

@dewwwald
Created August 4, 2016 05:53
Show Gist options
  • Save dewwwald/ab845be6027d64a9b5e00c22a6511950 to your computer and use it in GitHub Desktop.
Save dewwwald/ab845be6027d64a9b5e00c22a6511950 to your computer and use it in GitHub Desktop.
Angular2 Service for window
import {Injectable} from '@angular/core'
import { window } from '@angular/platform-browser/src/facade/browser';
@Injectable()
export class WindowService
{
constructor(){}
get nativeWindow() : Window
{
return window;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment