瀏覽代碼

[fix] if redirect uri exists then automatically redirect the user

pull/2/head
Saurabh 6 年之前
父節點
當前提交
969303dc92
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. +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 %}

Loading…
取消
儲存