another ls test

This commit is contained in:
Ben Arc 2021-04-20 14:47:37 +01:00
parent 5501eb1b74
commit cf96a36b0c

View file

@ -428,6 +428,7 @@
rowsPerPage: 10 rowsPerPage: 10
} }
}, },
passedCopilot: {},
formDialog: { formDialog: {
show: false, show: false,
data: {} data: {}
@ -504,24 +505,24 @@
this.g.user.wallets[0].inkey this.g.user.wallets[0].inkey
) )
.then(function (response) { .then(function (response) {
return response.data self.passedCopilot = response.data
}) })
.catch(function (error) { .catch(function (error) {
LNbits.utils.notifyApiError(error) LNbits.utils.notifyApiError(error)
}) })
}, },
openCopilotCompose: function (copilot_id) { openCopilotCompose: function (copilot_id) {
var copilot = this.getCopilot(copilot_id) this.getCopilot(copilot_id)
console.log(JSON.stringify(copilot)) console.log(JSON.stringify(this.passedCopilot))
localStorage.setItem('copilot', JSON.stringify(copilot)) localStorage.setItem('copilot', JSON.stringify(this.passedCopilot))
let params = let params =
'scrollbars=no, resizable=no,status=no,location=no,toolbar=no,menubar=no,width=1722,height=972,left=200,top=200' 'scrollbars=no, resizable=no,status=no,location=no,toolbar=no,menubar=no,width=1722,height=972,left=200,top=200'
open('../copilot/cp/', 'test', params) open('../copilot/cp/', 'test', params)
}, },
openCopilotPanel: function (copilot_id) { openCopilotPanel: function (copilot_id) {
var copilot = this.getCopilot(copilot_id) this.getCopilot(copilot_id)
console.log(JSON.stringify(copilot)) console.log(JSON.stringify(this.passedCopilot))
localStorage.setItem('copilot', JSON.stringify(copilot)) localStorage.setItem('copilot', JSON.stringify(this.passedCopilot))
let params = let params =
'scrollbars=no, resizable=no,status=no,location=no,toolbar=no,menubar=no,width=1722,height=972,left=200,top=200' 'scrollbars=no, resizable=no,status=no,location=no,toolbar=no,menubar=no,width=1722,height=972,left=200,top=200'
open('../copilot/pn/', 'test', params) open('../copilot/pn/', 'test', params)