Skip to content

Instantly share code, notes, and snippets.

@jaynzr
Created April 14, 2017 07:49
Show Gist options
  • Save jaynzr/a86d92f3ad821bc895c02566f83aa669 to your computer and use it in GitHub Desktop.
Save jaynzr/a86d92f3ad821bc895c02566f83aa669 to your computer and use it in GitHub Desktop.
angular service to provide window object http://stackoverflow.com/a/37176929
import { Injectable } from '@angular/core';
function getWindow (): any {
return window;
}
@Injectable()
export class WindowService {
get nativeWindow (): any {
return getWindow();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment