使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
anoopmb
/
payments
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
Merge pull request
#6250
from saurabh6790/get_reset_password_url
[fix] if redirect uri exists then automatically redirect the user
pull/2/head
Saurabh
6 年前
committed by
GitHub
父节点
547863149c
969303dc92
当前提交
0b0aa79a47
共有
1 个文件被更改
,包括
9 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+9
-0
payments/templates/pages/payment-success.html
+ 9
- 0
payments/templates/pages/payment-success.html
查看文件
@@ -15,4 +15,13 @@
<style>
{% include "templates/styles/card_style.css" %}
</style>
<script>
frappe.ready(function() {
if('{{ frappe.form_dict.redirect_to or "" }}'){
setTimeout(function(){
window.location.href = '{{ frappe.form_dict.redirect_to }}';
}, 6000);
}
})
</script>
{% endblock %}
撰写
预览
正在加载...
取消
保存