21 lines
462 B
JavaScript
21 lines
462 B
JavaScript
define(function (require, exports, module) {
|
|
require("./widget_modalDialog.js");
|
|
|
|
var btns = [
|
|
{
|
|
text: "刷新",
|
|
type: "primary",
|
|
callback: function () {
|
|
self.location.reload();
|
|
return false;
|
|
}
|
|
}
|
|
];
|
|
|
|
$.showModalDialog("您启用<u>12306订票助手扩展</u>才可以使用极速版订票,当前已禁用。请进入“我的应用”中启用 :-(", {
|
|
image: "/images/cat.png",
|
|
buttons: btns,
|
|
closeOnAction: false
|
|
});
|
|
});
|