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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83739a6529a5bd7b5a50033f7310faefc7983d68
4
- data.tar.gz: caebaff0914461c98a45b09770ae5e38f1339db4
3
+ metadata.gz: a1d6fe23d6f36bc6415b90247c289a1dd34aed5d
4
+ data.tar.gz: 1ad0f7650bb332d1eda0714b4ccfd6e10f4ff594
5
5
  SHA512:
6
- metadata.gz: 9bcda4eea36878509d329fe44ce8e7866903e0d7f0d88249fdc71e47f0da2b45a1f10d8a196c9dd17bbb8ef0b78c5d22ea09c0834ded85c8eb225882656b09cd
7
- data.tar.gz: 5fd8f50f70300f1ef807b7556075971ebdeab7b5b665bed6a5ad22fc85d91002067690643de4861c75e62d96773e43e8a67f274efd01cd481b902231a5d58098
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
- <%= f.input :email, autofocus: true, label: 'Please enter your email address' %>
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 %>
@@ -1,3 +1,3 @@
1
1
  module TkhAuthentication
2
- VERSION = "0.9.11"
2
+ VERSION = "0.9.12"
3
3
  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.11
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-19 00:00:00.000000000 Z
11
+ date: 2014-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails