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

@ -1 +1 @@
Subproject commit 79c15a18414190ffce39a126ccc9078405287693
Subproject commit 68f7557e44766ae1d9596e2c06877a51f34cb7a0

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.');
}
}