isSelfHost

This commit is contained in:
Kyle Spearrin 2018-06-30 13:51:20 -04:00
parent 877f10e0d3
commit 74d9b359a5
2 changed files with 5 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit c0e7e588ed59832a6f579ff63d85bfcdfb400d78
Subproject commit 20622db73c5c2a56777944bb06f32a21bf2e763f

View File

@ -200,6 +200,10 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
return process.env.ENV === 'development';
}
isSelfHost(): boolean {
return false;
}
copyToClipboard(text: string, options?: any): void {
const doc = options ? options.doc : window.document;
if ((window as any).clipboardData && (window as any).clipboardData.setData) {