activeadmin-settings 0.4.3 → 0.4.4

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.
@@ -21,5 +21,5 @@ Gem::Specification.new do |gem|
21
21
  gem.add_dependency("carrierwave", "~> 0.8.0")
22
22
  gem.add_dependency("bson_ext", "~> 1.8.2")
23
23
  gem.add_dependency("devise", "~> 2.2.3")
24
- gem.add_dependency("activeadmin", "~> 0.5.1")
24
+ gem.add_dependency("activeadmin", "~> 0.5.0")
25
25
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveadminSettings
2
- VERSION = "0.4.3"
2
+ VERSION = "0.4.4"
3
3
  end
@@ -21,19 +21,19 @@ $ ->
21
21
  tr.find(".admin_actions").hide()
22
22
  tr.find(".form_actions").show()
23
23
 
24
- $("#admins .admin .credentials_link").live "click", (e) ->
24
+ $('document').on 'click', "#admins .admin .credentials_link", (e) ->
25
25
  e.preventDefault()
26
26
  btn = $(this)
27
27
  tr = $(btn.attr("data-id"))
28
28
  show_credentials_form(tr)
29
29
 
30
- $("#admins .admin .cancel_link").live "click", (e) ->
30
+ $('document').on 'click', "#admins .admin .cancel_link", (e) ->
31
31
  e.preventDefault()
32
32
  btn = $(this)
33
33
  tr = $(btn.attr("data-id"))
34
34
  hide_credentials_form(tr)
35
35
 
36
- $("#admins .admin .update_link").live "click", (e) ->
36
+ $('document').on 'click', "#admins .admin .update_link", (e) ->
37
37
  e.preventDefault()
38
38
  btn = $(this)
39
39
  tr = $(btn.attr("data-id"))
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeadmin-settings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-13 00:00:00.000000000 Z
12
+ date: 2013-03-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-s3
@@ -114,7 +114,7 @@ dependencies:
114
114
  requirements:
115
115
  - - ~>
116
116
  - !ruby/object:Gem::Version
117
- version: 0.5.1
117
+ version: 0.5.0
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
@@ -122,7 +122,7 @@ dependencies:
122
122
  requirements:
123
123
  - - ~>
124
124
  - !ruby/object:Gem::Version
125
- version: 0.5.1
125
+ version: 0.5.0
126
126
  description: Easy to use general purpose settings backend for activeadmin
127
127
  email:
128
128
  - santyor@gmail.com