瀏覽代碼

GUI: Avoid history.pushState on Chrome with file:/ access

dds
PaulStoffregen 9 年之前
父節點
當前提交
b3e5b475bc
共有 1 個檔案被更改,包括 4 行新增4 行删除
  1. +4
    -4
      gui/red/nodes.js

+ 4
- 4
gui/red/nodes.js 查看文件

@@ -90,10 +90,10 @@ RED.nodes = (function() {
return node_defs[type];
}
function selectNode(name) {
// on Chrome this causes "Uncaught SecurityError" when used from file:
// but other than errors in the console, doesn't seem to harm anything
window.history.pushState(null, null, window.location.protocol + "//"
+ window.location.host + window.location.pathname + '?info=' + name);
if (!((document.origin == 'null') && (window.chrome))) {
window.history.pushState(null, null, window.location.protocol + "//"
+ window.location.host + window.location.pathname + '?info=' + name);
}
}
function addNode(n) {
if (n._def.category == "config") {

Loading…
取消
儲存