draft completion

This commit is contained in:
2024-07-15 22:07:57 -04:00
parent 62aed9fea2
commit f6c0afbc40
3 changed files with 376 additions and 304 deletions

View File

@@ -216,5 +216,13 @@ chrome.runtime.onMessage.addListener(function(message, sender, sendResponse) {
type: "LOGOUT",
from: 'qortal'
}, "*");
}
});
} else if (message.type === "RESPONSE_FOR_TRADES") {
// Notify the web page
window.postMessage({
type: "RESPONSE_FOR_TRADES",
from: 'qortal',
payload: message.message
}, "*");
}
});