Skip to content

Commit 8b8932c

Browse files
committed
deploy: 8a905e4
1 parent 9e042c2 commit 8b8932c

File tree

37 files changed

+161
-234
lines changed

37 files changed

+161
-234
lines changed

LiveDevelopment/BrowserScripts/LiveDevProtocolRemote.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -238,23 +238,11 @@
238238
reload: function (msg) {
239239
// just reload the page
240240
window.location.reload(msg.params.ignoreCache);
241-
},
242-
243-
/**
244-
* Navigate to a different page.
245-
* @param {Object} msg
246-
*/
247-
navigate: function (msg) {
248-
if (msg.params.url) {
249-
// navigate to a new page.
250-
window.location.replace(msg.params.url);
251-
}
252241
}
253242
};
254243

255244
// subscribe handler to method Page.reload
256245
MessageBroker.on("Page.reload", Page.reload);
257-
MessageBroker.on("Page.navigate", Page.navigate);
258246
MessageBroker.on("ConnectionClose", Page.close);
259247

260248

LiveDevelopment/LiveDevMultiBrowser.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -422,10 +422,6 @@ define(function (require, exports, module) {
422422
if (exports.status < STATUS_ACTIVE) {
423423
_launch(_resolveUrl(doc.file.fullPath), doc.file.fullPath);
424424
}
425-
if (exports.status === STATUS_RESTARTING) {
426-
// change page in browser
427-
_protocol.navigate(_resolveUrl(doc.file.fullPath));
428-
}
429425

430426
_protocol
431427
// TODO: timeout if we don't get a connection within a certain time

LiveDevelopment/MultiBrowserImpl/protocol/LiveDevProtocol.js

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -357,25 +357,6 @@ define(function (require, exports, module) {
357357
);
358358
}
359359

360-
/**
361-
* Protocol method. Navigates current page to the given URL.
362-
* @param {number|Array.<number>} clients A client ID or array of client IDs that should navigate to the given URL.
363-
* @param {string} url URL to navigate the page to.
364-
* @return {$.Promise} A promise that's resolved with the return value from the first client that responds
365-
* to the method.
366-
*/
367-
function navigate(url, clients) {
368-
return _send(
369-
{
370-
method: "Page.navigate",
371-
params: {
372-
url: url
373-
}
374-
},
375-
clients
376-
);
377-
}
378-
379360
/**
380361
* Closes the connection to the given client. Proxies to the transport.
381362
* @param {number} clientId
@@ -401,7 +382,6 @@ define(function (require, exports, module) {
401382
exports.setStylesheetText = setStylesheetText;
402383
exports.getStylesheetText = getStylesheetText;
403384
exports.reload = reload;
404-
exports.navigate = navigate;
405385
exports.close = close;
406386
exports.getConnectionIds = getConnectionIds;
407387
exports.closeAllConnections = closeAllConnections;

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ window.AppConfig = {
2323
"extension_store_url": "https://store.core.ai/src/",
2424
"app_notification_url": "assets/notifications/dev/",
2525
"linting.enabled_by_default": true,
26-
"build_timestamp": "2024-01-10T15:55:27.340Z",
26+
"build_timestamp": "2024-01-11T03:26:22.017Z",
2727
"googleAnalyticsID": "G-P4HJFPDB76",
2828
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
2929
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -34,7 +34,7 @@ window.AppConfig = {
3434
"bugsnagEnv": "development"
3535
},
3636
"name": "Phoenix",
37-
"version": "3.2.17-19685",
37+
"version": "3.2.17-19688",
3838
"apiVersion": "3.2.17",
3939
"homepage": "https://core.ai",
4040
"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)