Tweaks to success redirect
- 5 seconds wait before redirect
- Edited description for URL in settings
diff --git a/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json b/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
index 17e754b..4b26e49 100644
--- a/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+++ b/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
@@ -94,14 +94,14 @@
    "label": "Success Settings"
   },
   {
-   "description": "Leave blank for home.\nThis is relative to site URL, for example \"/about\" will redirect to \"https://yoursitename.com/about\"",
+   "description": "Leave blank for home.\nThis is relative to site URL, for example \"about\" will redirect to \"https://yoursitename.com/about\"",
    "fieldname": "success_redirect_url",
    "fieldtype": "Data",
    "label": "Success Redirect URL"
   }
  ],
  "issingle": 1,
- "modified": "2019-11-20 15:17:55.617364",
+ "modified": "2019-11-26 12:14:17.669366",
  "modified_by": "Administrator",
  "module": "CRM",
  "name": "Appointment Booking Settings",
diff --git a/erpnext/www/book-appointment/index.js b/erpnext/www/book-appointment/index.js
index 433b956..13c87dd 100644
--- a/erpnext/www/book-appointment/index.js
+++ b/erpnext/www/book-appointment/index.js
@@ -219,7 +219,7 @@
                 if (window.appointment_settings.success_redirect_url){
                     redirect_url += window.appointment_settings.success_redirect_url;
                 }
-                window.location.href = redirect_url;},2)
+                window.location.href = redirect_url;},5000)
         },
         error: (err)=>{
             frappe.show_alert("Something went wrong please try again");