From bbfbe3683e1c406fb4fc0c5dfd8fdd12b7ba5e80 Mon Sep 17 00:00:00 2001 From: "SIPOS, Peter" Date: Mon, 21 Nov 2016 14:50:22 +0100 Subject: [PATCH] Make my record modal inputs more clear Add "eg." before the placeholder texts. Some user missed to fill out the priority field, and then they got errors. --- app/templates/domain.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/templates/domain.html b/app/templates/domain.html index 4b19e7c..e834ae1 100644 --- a/app/templates/domain.html +++ b/app/templates/domain.html @@ -268,16 +268,16 @@ var modal = $("#modal_custom_record"); if (record_data.val() == "") { var form = " \ - \ + \ \ - \ + \ "; } else { var parts = record_data.val().split(" "); var form = " \ - \ + \ \ - \ + \ "; } modal.find('.modal-body p').html(form);