Skip to content

shadowsocks-panel v1.3.1 updated

Latest
Compare
Choose a tag to compare
@sendya sendya released this 14 Jan 14:55

说明:

由于年久失修,建议需要安装的用户直接使用
git clone -b master https://github.com/sendya/shadowsocks-panel.git 拉取 master 分支代码。
本处 release 可能更新不及时

  1. 优化安装脚本
  2. 修正登陆报错的问题
  3. 由于无法继续维护问题,移除程序内置的版本检查,防止更新验证服务导致程序运行缓慢的问题。

如果登陆界面在浏览器 console 输出如下错误:

Uncaught TypeError: Cannot read property 'trim' of undefined
    at HTMLDivElement.<anonymous> (xenon-custom.js:1092)
    at Function.each (jquery-1.11.1.min.js:2)
    at m.fn.init.each (jquery-1.11.1.min.js:2)
    at HTMLDocument.<anonymous> (xenon-custom.js:1061)
    at j (jquery-1.11.1.min.js:2)
    at Object.fireWith [as resolveWith] (jquery-1.11.1.min.js:2)
    at Function.ready (jquery-1.11.1.min.js:2)
    at HTMLDocument.J (jquery-1.11.1.min.js:2)

可以到面板安装目录手动修改文件 /Public/Resource/Xenon/js/xenon-custom.js 的第 1092
原内容:

if($input.val().trim().length > 0)
{
    $this.addClass('is-focused');
}

修改为:

if($input.val() != null && $input.val().length > 0)
{
    $this.addClass('is-focused');
}