update use of plugin API

pull/1/head
yann300 7 years ago
parent 1c0472f0e8
commit 728c260eef
  1. 18
      test-browser/plugin/remix.js

@ -8,25 +8,31 @@ window.addEventListener('message', receiveMessage, false)
window.onload = function () {
document.querySelector('input#testmessageadd').addEventListener('click', function () {
window.parent.postMessage(JSON.stringify({
action: 'request',
key: 'editor',
type: 'setConfig',
arguments: [document.getElementById('filename').value, document.getElementById('valuetosend').value],
value: [document.getElementById('filename').value, document.getElementById('valuetosend').value],
id: 34
}), 'http://127.0.0.1:8080')
}), '*')
})
document.querySelector('input#testmessageremove').addEventListener('click', function () {
window.parent.postMessage(JSON.stringify({
action: 'request',
key: 'editor',
type: 'removeConfig',
arguments: [document.getElementById('filename').value],
value: [document.getElementById('filename').value],
id: 35
}), 'http://127.0.0.1:8080')
}), '*')
})
document.querySelector('input#testmessagerget').addEventListener('click', function () {
window.parent.postMessage(JSON.stringify({
action: 'request',
key: 'editor',
type: 'getConfig',
arguments: [document.getElementById('filename').value],
value: [document.getElementById('filename').value],
id: 36
}), 'http://127.0.0.1:8080')
}), '*')
})
}

Loading…
Cancel
Save