1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

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

Submodule jslib updated: c0e7e588ed...20622db73c

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) {