tkh_menus 0.9.6 → 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0d9feb7b3893844bb249dc45b7c561b707204645
4
- data.tar.gz: 2836a7251ada40d7019575462f602f8bf70eadd6
3
+ metadata.gz: bd84dbf67ca35f60bd787bc594e0bed631e438a0
4
+ data.tar.gz: f888029a5f676d103cd9fd841014353cb28114a5
5
5
  SHA512:
6
- metadata.gz: 492f8a7dafd455a0068a5541c486b6fc7f8e3517fb65075f88aaec5432fdb2bbd02dc948a6ccbc0bf1307f958ce3b9baf9a9e737639200acb34040263c907967
7
- data.tar.gz: 07e4a3ecc632e494f219f17b53a579083b909d82b65eb0a2968f45194bec1a5f5edc77cf3f1361489349167675ee0400337542ce646a2adbd2d1be5c5ca2d7a1
6
+ metadata.gz: 960a1346be167bf269a295a030e00ab4468d9b59cad2107c4f85b5724ce1b1d02afff191fb0a6998926f275aecd457fdfeb73f9dced592e9cad2636272fc005d
7
+ data.tar.gz: fd496c07167dac3d7b0ca9d5e9cea62869c609441c4a03aedfd1f116b837083531ba260a24144822e53e640832763d50afbcad6b28797a76097a0a906cdbc598
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
 
4
4
 
5
+ ## 0.9.7
6
+
7
+ * Fixed up markup for menu form
8
+
9
+
5
10
  ## 0.9.6
6
11
 
7
12
  * Upgraded rails and simple_form dependencies.
@@ -1,9 +1,8 @@
1
- <%= simple_form_for @menu, :html => { class: 'form-horizontal' } do |f| %>
1
+ <%= simple_form_for @menu do |f| %>
2
2
  <%= f.error_notification %>
3
3
 
4
4
  <%= f.input :name, label: t('activerecord.attributes.menu.name'), hint: t('menus.hint.name') %>
5
5
  <%= f.input :path, label: t('activerecord.attributes.menu.path'), hint: t('menus.hint.path') %>
6
- <%# = f.input :parent_id, label: t('activerecord.attributes.menu.parent'), hint: t('menus.hint.parent') %>
7
6
  <%= f.input :parent_menu_name,
8
7
  as: :string,
9
8
  :wrapper_html => { :id => 'parent-menu-name' },
@@ -13,6 +12,6 @@
13
12
  :data => { provide: 'typeahead',
14
13
  source: Menu.orphans.alphabetical.map(&:name).to_json }
15
14
  } %>
16
- <br />
15
+
17
16
  <%= f.button :submit, :class => 'btn btn-primary' %>
18
17
  <% end %>
@@ -1,3 +1,3 @@
1
1
  module TkhMenus
2
- VERSION = "0.9.6"
2
+ VERSION = "0.9.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tkh_menus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
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-04-21 00:00:00.000000000 Z
11
+ date: 2014-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails