|
...
|
...
|
@@ -4,7 +4,7 @@ |
|
4
|
4
|
<div class="form-group row">
|
|
5
|
5
|
<%= form.label :meta_title, Kanjai::PageDatum.human_attribute_name(:meta_title), :class => "col-md-2 col-form-label" %>
|
|
6
|
6
|
<div class="col-md-10">
|
|
7
|
|
- <%= form.text_field :meta_title, :class => "form-control #{@page_data.errors.include?(:meta_title) ? 'parsley-error' : ''}" %>
|
|
|
7
|
+ <%= form.text_field :meta_title, :class => "form-control #{@page_data.errors.include?(:meta_title) ? 'parsley-error' : ''}", data: {toggle: 'popover', placement: 'top', content: 'Content', original_title: 'Title'} %>
|
|
8
|
8
|
<%= error_messages(@page_data, :meta_title) %>
|
|
9
|
9
|
</div>
|
|
10
|
10
|
</div>
|
|
...
|
...
|
@@ -12,7 +12,7 @@ |
|
12
|
12
|
<div class="form-group row">
|
|
13
|
13
|
<%= form.label :meta_description, Kanjai::PageDatum.human_attribute_name(:meta_description), :class => "col-md-2 col-form-label" %>
|
|
14
|
14
|
<div class="col-md-10">
|
|
15
|
|
- <%= form.text_field :meta_description, :class => "form-control" %>
|
|
|
15
|
+ <%= form.text_field :meta_description, :class => "form-control", data: {toggle: 'popover', placement: 'top', content: 'Content', original_title: 'Title'} %>
|
|
16
|
16
|
<%= error_messages(@page_data, :meta_description) %>
|
|
17
|
17
|
</div>
|
|
18
|
18
|
</div>
|
|
...
|
...
|
@@ -20,7 +20,7 @@ |
|
20
|
20
|
<div class="form-group row">
|
|
21
|
21
|
<%= form.label :meta_keywords, Kanjai::PageDatum.human_attribute_name(:meta_keywords), :class => "col-md-2 col-form-label" %>
|
|
22
|
22
|
<div class="col-md-10">
|
|
23
|
|
- <%= form.text_field :meta_keywords, :class => "form-control" %>
|
|
|
23
|
+ <%= form.text_field :meta_keywords, :class => "form-control", data: {toggle: 'popover', placement: 'top', content: 'Content', original_title: 'Title'} %>
|
|
24
|
24
|
<%= error_messages(@page_data, :meta_keywords) %>
|
|
25
|
25
|
</div>
|
|
26
|
26
|
</div>
|
...
|
...
|
|