1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

readFromClipboard implemented in web

This commit is contained in:
Kyle Spearrin
2019-02-26 22:42:30 -05:00
parent 3f27093f82
commit 7bde73102b
2 changed files with 5 additions and 1 deletions

2
jslib

Submodule jslib updated: 79c15a1841...68f7557e44

View File

@@ -287,4 +287,8 @@ export class WebPlatformUtilsService implements PlatformUtilsService {
}
}
}
readFromClipboard(options?: any): Promise<string> {
throw new Error('Cannot read from clipboard on web.');
}
}