You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2018/07/06 21:10:05 UTC

[whimsy] branch master updated: Hints

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 27047e9  Hints
27047e9 is described below

commit 27047e9f487a07a6fbdbee93290988f0e500516f
Author: Sebb <se...@apache.org>
AuthorDate: Fri Jul 6 22:10:04 2018 +0100

    Hints
---
 www/project/icla/views/pages/interview.js.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/www/project/icla/views/pages/interview.js.rb b/www/project/icla/views/pages/interview.js.rb
index 0e7d863..8d7bc8c 100644
--- a/www/project/icla/views/pages/interview.js.rb
+++ b/www/project/icla/views/pages/interview.js.rb
@@ -36,12 +36,14 @@ class Interview < Vue
     _div.form_group do
       _p 'Full Name:'
       _input.form_control.fullname! value: @fullName, required: true,
+        placeholder: 'Enter the name you used previously',
         onChange: self.setFullName, disabled: @disablePersonalDetails
     end
 
     _div.form_group do
       _p 'Email Address:'
       _input.form_control.emailAddress! value: @emailAddress, required: true,
+        placeholder: 'Enter the address you used previously',
         onChange: self.setEmailAddress, disabled: @disablePersonalDetails
     end