From 37bdc69200b99b828fe210da52051eb8f5dbbe02 Mon Sep 17 00:00:00 2001 From: iFish Date: Tue, 9 Sep 2014 10:31:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=9C=AA=E5=AE=89=E8=A3=85?= =?UTF-8?q?=E6=89=A9=E5=B1=95=E6=8F=90=E9=86=92=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web12306/js/ui/widget_message_popup.js | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/Web12306/js/ui/widget_message_popup.js b/Web12306/js/ui/widget_message_popup.js index ffa4cb0..752b480 100644 --- a/Web12306/js/ui/widget_message_popup.js +++ b/Web12306/js/ui/widget_message_popup.js @@ -138,17 +138,33 @@ }); }; exports.showNonExtensionInstall = function () { - $.showModalDialog("您需要安装最新版12306订票助手扩展才可以使用极速版订票。请安装后刷新此页面 :-)", { + $.showModalDialog("您需要安装猎豹浏览器最新版12306订票助手扩展才可以使用极速版订票。请安装后刷新此页面 :-)", { image: "/images/cat.png", buttons: [ { - text: "立刻安装", + text: "安装猎豹浏览器", type: "primary", callback: function () { - window.open("http://www.fishlee.net/service/download/383/%40name"); + window.open("http://dl.liebao.cn/coop/KSBrowser_12306.exe"); return false; } + }, + { + text: "安装扩展", + type: "primary", + callback: function () { + window.open("http://12306.fishlee.net/crx"); + return false; } + }, + { + text: "刷新", + type: "default", + callback: function () { + self.location.reload(); + return false; + } + } ], closeOnAction: false });