inline_forms 1.6.49 → 1.6.50
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,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YmM5OGMyYjhjODgxODNhNzk4MWQxZGUyZWYyMzlkZjExYmI5MDNjNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTcxMzM0NDI4MmFjOTFiNjZmOWRlOTQ5YmFkNWFkMjA4ZGIyNTk5Ng==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDQ2ZTc1MWU0ZTVjOWMyM2NmODUyYzdiNWFhNGQ5YjE1MjEyYTUzNDlhOTgx
|
10
|
+
YzI2YWYwZTcwYmU5ZGM0MjY5NDgzYmQxMzZiNDcwMmRhYzIxNWFlYjJjMTlk
|
11
|
+
ZDA1OGJhNGE3NWE2NDFkZGQ2ZTkyY2IzY2E4YjY5NzdjMjY4NTI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDMxNjQ3YTJlZTQ3ZDVmZDZiNzRiMjRiNGJkMzdiMTY1YjE3NzUwMzI0MGVm
|
14
|
+
MTcwZTZjNDRlZTY4OTJkMGVlMzVkY2Y2NmI0M2ZhOWU3NmRiMmI4YzBiODhi
|
15
|
+
MDM2NjE0MTM2NjA1NDc0YTlkZTE0Mjc3MzVjMTJmZWYwNmM4YWE=
|
@@ -7,10 +7,10 @@
|
|
7
7
|
//= require jquery
|
8
8
|
//= require jquery_ujs
|
9
9
|
//= require foundation
|
10
|
+
//= require foundation-datetimepicker
|
11
|
+
//= require jquery-scrollto
|
10
12
|
//= require jquery.remotipart
|
11
13
|
//= require ckeditor/init
|
12
14
|
//= require inline_forms
|
13
15
|
|
14
16
|
$(document).foundation();
|
15
|
-
|
16
|
-
|
@@ -8,7 +8,8 @@ end
|
|
8
8
|
|
9
9
|
def date_select_edit(object, attribute)
|
10
10
|
css_id = 'datepicker_' + object.class.to_s.underscore + '_' + object.id.to_s + '_' + attribute.to_s
|
11
|
-
text_field_tag attribute, ( object.send(attribute).nil? ? "" : object.send(attribute).strftime("%d-%m-%Y") ), :id => css_id, :class =>'datepicker'
|
11
|
+
out = text_field_tag attribute, ( object.send(attribute).nil? ? "" : object.send(attribute).strftime("%d-%m-%Y") ), :id => css_id, :class =>'datepicker'
|
12
|
+
out << "<script>$('##{css_id}').fdatepicker();</script>".html_safe
|
12
13
|
end
|
13
14
|
|
14
15
|
def date_select_update(object, attribute)
|
data/lib/inline_forms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inline_forms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.50
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ace Suares
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rvm
|