isSelfHost
This commit is contained in:
parent
877f10e0d3
commit
74d9b359a5
2
jslib
2
jslib
|
@ -1 +1 @@
|
|||
Subproject commit c0e7e588ed59832a6f579ff63d85bfcdfb400d78
|
||||
Subproject commit 20622db73c5c2a56777944bb06f32a21bf2e763f
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue