Skip to content

Commit 7905363

Browse files
committed
deploy: cc3f7a7
1 parent 8163057 commit 7905363

File tree

33 files changed

+325
-189
lines changed

33 files changed

+325
-189
lines changed

LiveDevelopment/BrowserScripts/RemoteFunctions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ function RemoteFunctions(config, remoteWSPort) {
195195

196196
show: function () {
197197
if (!this.body) {
198-
this.body = this.createBody();
198+
this.createBody();
199199
}
200200
if (!this.body.parentNode) {
201201
window.document.body.appendChild(this.body);

LiveDevelopment/LiveDevMultiBrowser.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,7 @@ define(function (require, exports, module) {
542542
_protocol
543543
// TODO: timeout if we don't get a connection within a certain time
544544
.on("ConnectionConnect.livedev", function (event, msg) {
545-
// check for the first connection
546-
if (_protocol.getConnectionIds().length === 1) {
545+
if (_protocol.getConnectionIds().length >= 1) {
547546
// check the page that connection comes from matches the current live document session
548547
if (_liveDocument && msg.url === _resolveUrl(_liveDocument.doc.file.fullPath)) {
549548
_setStatus(STATUS_ACTIVE);

LiveDevelopment/MultiBrowserImpl/protocol/LiveDevProtocol.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ define(function (require, exports, module) {
200200
* @param {number} clientId
201201
*/
202202
function _close(clientId) {
203+
if(!_connections[clientId]){
204+
return;
205+
}
203206
delete _connections[clientId];
204207
exports.trigger("ConnectionClose", {
205208
clientId: clientId

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ window.AppConfig = {
2222
"extension_url": "https://extensions.phcode.dev/extensions/",
2323
"extension_store_url": "https://store.core.ai/src/",
2424
"linting.enabled_by_default": true,
25-
"build_timestamp": "2023-07-14T07:12:04.458Z",
25+
"build_timestamp": "2023-07-14T13:13:36.904Z",
2626
"googleAnalyticsID": "G-P4HJFPDB76",
2727
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
2828
"coreAnalyticsID": "phoenix",
@@ -32,7 +32,7 @@ window.AppConfig = {
3232
"bugsnagEnv": "development"
3333
},
3434
"name": "Phoenix",
35-
"version": "3.2.2-19315",
35+
"version": "3.2.2-19324",
3636
"apiVersion": "3.2.2",
3737
"homepage": "https://core.ai",
3838
"issues": {

assets/default-project/en.zip

0 Bytes
Binary file not shown.

assets/sample-projects/HTML5.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

assets/sample-projects/explore.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)