think_feel_do_engine 3.15.5 → 3.15.6
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/app/views/think_feel_do_engine/activities/_activity_form_fields.html.erb +2 -2
- data/app/views/think_feel_do_engine/activities/_build_activity.html.erb +1 -1
- data/app/views/think_feel_do_engine/activities/past_activity_form.html.erb +2 -2
- data/lib/think_feel_do_engine/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: a745a5206e3606fbcbbaef1bd99dc89a47403f80
|
|
4
|
+
data.tar.gz: df0aaa89bed5ac103ea4569015d36883a0fbccc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ea86af1d1d27b4730a6276112f7e600f8c081115cf75072dba1d031cd3c89911bb62ddb49a681423c8f532a4ab01ba8d2e76e5a3100db15f9ce57228caa03bf
|
|
7
|
+
data.tar.gz: b2f6d49e084ee441af96ded8d752fdd2193ad5676f3a0402aa42a00f7d7af159ff2710347ff33585f51c6c09afd769d690507ef31675592694df6351a567263c
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
<div class="form-group">
|
|
9
9
|
<label>
|
|
10
10
|
OK, what's something fun that you can do this week?
|
|
11
|
-
<%= text_field_tag "unplanned_activities[0][activity_type_title]", "", class: "form-control" %>
|
|
11
|
+
<%= text_field_tag "unplanned_activities[0][activity_type_title]", "", class: "form-control", maxlength: 255 %>
|
|
12
12
|
</label>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
<div class="form-group">
|
|
16
16
|
<label>
|
|
17
17
|
And, something else you can do that gives you a sense of accomplishment?
|
|
18
|
-
<%= text_field_tag "unplanned_activities[1][activity_type_title]", "", class: "form-control" %>
|
|
18
|
+
<%= text_field_tag "unplanned_activities[1][activity_type_title]", "", class: "form-control", maxlength: 255 %>
|
|
19
19
|
</label>
|
|
20
20
|
</div>
|
|
21
21
|
<% end %>
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<span class="input-group-addon">
|
|
28
28
|
<%= radio_button_tag "#{ parameter_prefix }[activity_type_title]", "", false, id: "new_activity_radio", class: "choose-one" %>
|
|
29
29
|
</span>
|
|
30
|
-
<input id="activity_activity_type_new_title" name="<%= parameter_prefix %>[activity_type_new_title]" type="text" class="form-control"></input>
|
|
30
|
+
<input id="activity_activity_type_new_title" name="<%= parameter_prefix %>[activity_type_new_title]" type="text" class="form-control" maxlength="255"></input>
|
|
31
31
|
</div>
|
|
32
32
|
</div>
|
|
33
33
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<br/>
|
|
24
24
|
<% if index > 0 %>
|
|
25
25
|
<div class="input-group">
|
|
26
|
-
<%= f.text_field :activity_type_title, class: "form-control", id: "activity_type_#{ index }" %>
|
|
26
|
+
<%= f.text_field :activity_type_title, class: "form-control", id: "activity_type_#{ index }", maxlength: 255 %>
|
|
27
27
|
<span class="input-group-btn">
|
|
28
28
|
<button <%= "id=\"copy_#{ index }\"".html_safe %> class="copy_btn btn btn-default" type="button">
|
|
29
29
|
Copy from above
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
</span>
|
|
32
32
|
</div>
|
|
33
33
|
<% else %>
|
|
34
|
-
<%= f.text_field :activity_type_title, class: "form-control", id: "activity_type_#{ index }" %>
|
|
34
|
+
<%= f.text_field :activity_type_title, class: "form-control", id: "activity_type_#{ index }", maxlength: 255 %>
|
|
35
35
|
<% end %>
|
|
36
36
|
</div>
|
|
37
37
|
</div>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: think_feel_do_engine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.15.
|
|
4
|
+
version: 3.15.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Carty-Fickes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|