-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modifications according to PR #29 comments
- Loading branch information
Showing
7 changed files
with
17 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
/gh-pages | ||
/dist | ||
/build | ||
/hwcrypto.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
export const VERSION = '@@hwcryptoversion' | ||
|
||
export const digidoc_mime = 'application/x-digidoc' | ||
export const digidoc_chrome = 'TokenSigning' | ||
|
||
export const USER_CANCEL = 'user_cancel' | ||
export const NO_CERTIFICATES = 'no_certificates' | ||
export const INVALID_ARGUMENT = 'invalid_argument' | ||
export const TECHNICAL_ERROR = 'technical_error' | ||
export const NO_IMPLEMENTATION = 'no_implementation' | ||
export const NOT_ALLOWED = 'not_allowed' | ||
|
||
export const localServiceURL = 'https://local.ria.ee' | ||
export const defaultXHRTimeout = 5000 | ||
export const defaultXHRTimeout = 5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
import DigiDocPlugin from './DigiDocPlugin' | ||
import DigiDocExtension from './DigiDocExtension' | ||
import DigiDocServlet from './DigiDocServlet' | ||
|
||
const enabledPlugins = [ | ||
DigiDocServlet, | ||
const enabledBackends = [ | ||
DigiDocPlugin, | ||
DigiDocExtension | ||
] | ||
|
||
export { DigiDocPlugin, DigiDocExtension, DigiDocServlet, enabledPlugins } | ||
export { enabledBackends } |