Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/plugin/js/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,6 @@ export const DEFAULT_OPTIONS = {
customClass : '',
verification : 'continue',
verificationHelp : 'Type "[+:verification]" below to confirm',
promptHelp : 'Type in the box below and click "[+:okText]"'
promptHelp : 'Type in the box below and click "[+:okText]"',
forwardPlugin : {}
}
2 changes: 1 addition & 1 deletion src/plugin/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Plugin.prototype.mountIfNotMounted = function () {
let node = document.createElement('div')
document.querySelector('body').appendChild(node)

let Vm = new DialogConstructor()
let Vm = new DialogConstructor(this.globalOptions.forwardPlugin)

Vm.registeredViews = this.registeredComponents()

Expand Down