tkh_authentication 0.9.11 → 0.9.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/app/views/reception/_email_input_form.html.erb +2 -1
- data/lib/tkh_authentication/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1d6fe23d6f36bc6415b90247c289a1dd34aed5d
|
|
4
|
+
data.tar.gz: 1ad0f7650bb332d1eda0714b4ccfd6e10f4ff594
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4430cd4a7f7a2b717b5f03dbaecfd9a28e8a14d0af6188acfd7a67b2cb9aa0637f2748f489424040244b808f3f0699c399b4485c30347c722c3660101958ebfd
|
|
7
|
+
data.tar.gz: f74131abc5b95796c0bfeba24648286f58f792a3831edbe7ec5e931130e8011255fd36098a3c24eed8e3606a5785b246c05469cb04bee4f3bd01efa8a249d6e1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# TKH Authentication
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
|
|
5
|
+
## 0.9.12
|
|
6
|
+
|
|
7
|
+
* Removed autofocus from email_input_form. When form was at the bottom of a page, the browser would scroll all the way down upon loading.
|
|
8
|
+
|
|
9
|
+
|
|
4
10
|
## 0.9.11
|
|
5
11
|
|
|
6
12
|
* Added a fallback string to spiritual_name virtual attribute in user model.
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
<%= simple_form_for User.new, url: parse_email_path, html: { id: 'email-input-form' }, remote: true, method: 'post' do |f| %>
|
|
4
4
|
<%= f.error_notification %>
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
<% # had to remove autofocus: true because when form was embedded at the bottom of a page, the browser would scroll all the way down to the field in the page. %>
|
|
7
|
+
<%= f.input :email, label: 'Please enter your email address' %>
|
|
7
8
|
<br />
|
|
8
9
|
<%= f.button :submit, submit_message, :class => 'btn btn-primary' %>
|
|
9
10
|
<% end %>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tkh_authentication
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Swami Atma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-08-
|
|
11
|
+
date: 2014-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|