0

我已将我的 chrome 更新到版本 24.0.1312.52 m。Sahi OS 控制器无法使用更新的 Chrome 打开。我用 Alt、Alt+Ctrl 进行了同样的检查,关闭了弹出窗口阻止程序,但仍然没有运气。我在另一台机器上检查了同样的问题,同样的问题发生了,即在将 chrome 更新到最新版本后,sahi 控制器没有打开。

操作系统:Windows 7 专业版

浏览器:Chrome 版本 24.0.1312.52 m

Sahi:Sahi OS 版本

4

2 回答 2

1

Not sure what is going on, but here is the workaround.

Open sahi/htdocs/spr/concat.js

Look for Sahi.prototype.openControllerWindow. Replace the full function so that it looks like:

Sahi.prototype.openControllerWindow = function (e) {
    if (!e) e = window.event;
    if (!this.isHotKeyPressed(e)) return true;
    if (this._isChrome()) {
        window.setTimeout(function(){_sahi.topSahi().openWin(e)}, 100);
    } else {
        this.topSahi().openWin(e);
    }
    return true;
};

Next search for _sahiControl in the same file and replace it with sahiControl. (You should see 2 occurrences.)

Restart Sahi, clear browser cache and check.

Regards, Narayan

于 2013-01-15T05:38:23.410 回答
0

这已在 Sahi 4.5.1 中修复。您可以从此链接下载它: http: //sahi.co.in/downloads-archive/

谢谢,

于 2013-01-23T19:01:21.653 回答