effective_products 0.5.1 → 0.6.0
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/datatables/effective_ring_wizards_datatable.rb +1 -1
- data/app/datatables/effective_stamp_wizards_datatable.rb +1 -1
- data/app/views/effective/ring_wizards/_dashboard.html.haml +1 -1
- data/app/views/effective/stamp_wizards/_dashboard.html.haml +1 -1
- data/lib/effective_products/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f4446c7417e0969e7f48d7396679e5cb7a12a873bfac9088578ec5c8865c153
|
|
4
|
+
data.tar.gz: 382189966ffafbb158028405df11695cdf0ca755aa80be53b3b90145b017751e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a80cfe4cc1d7e503db6e12d6a830f8796d10b5a67c7cf59fff676dd88a92bcf72632363975546d872140dca54eee8090f861feafc4fa44c5ddfd2f1cc81441fb
|
|
7
|
+
data.tar.gz: 68dc43efe37d1cb5c88474c418043b4b1334356b467d2d27f2561a39224066cc7d056aae8bf6f1320124809d8cb8dfab561a64a7ff0032929abf9d7eca86f49d
|
|
@@ -20,7 +20,7 @@ class EffectiveRingWizardsDatatable < Effective::Datatable
|
|
|
20
20
|
|
|
21
21
|
actions_col(actions: []) do |resource|
|
|
22
22
|
if resource.draft?
|
|
23
|
-
dropdown_link_to('Continue', effective_products.ring_wizard_build_path(resource, resource.next_step), 'data-turbolinks' => false)
|
|
23
|
+
dropdown_link_to('Continue', effective_products.ring_wizard_build_path(resource, resource.next_step), 'data-turbolinks' => false, 'data-turbo' => false)
|
|
24
24
|
dropdown_link_to('Delete', effective_products.ring_wizard_path(resource), 'data-confirm': "Really delete #{resource}?", 'data-method': :delete)
|
|
25
25
|
else
|
|
26
26
|
dropdown_link_to('Show', effective_products.ring_wizard_path(resource))
|
|
@@ -20,7 +20,7 @@ class EffectiveStampWizardsDatatable < Effective::Datatable
|
|
|
20
20
|
|
|
21
21
|
actions_col(actions: []) do |resource|
|
|
22
22
|
if resource.draft?
|
|
23
|
-
dropdown_link_to('Continue', effective_products.stamp_wizard_build_path(resource, resource.next_step), 'data-turbolinks' => false)
|
|
23
|
+
dropdown_link_to('Continue', effective_products.stamp_wizard_build_path(resource, resource.next_step), 'data-turbolinks' => false, 'data-turbo' => false)
|
|
24
24
|
dropdown_link_to('Delete', effective_products.stamp_wizard_path(resource), 'data-confirm': "Really delete #{resource}?", 'data-method': :delete)
|
|
25
25
|
else
|
|
26
26
|
dropdown_link_to('Show', effective_products.stamp_wizard_path(resource))
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
%p
|
|
11
11
|
Please
|
|
12
|
-
= link_to("Continue payment for #{existing}", effective_products.ring_wizard_build_path(existing, existing.next_step), 'data-turbolinks' => false, class: 'btn btn-primary')
|
|
12
|
+
= link_to("Continue payment for #{existing}", effective_products.ring_wizard_build_path(existing, existing.next_step), 'data-turbolinks' => false, 'data-turbo' => false, class: 'btn btn-primary')
|
|
13
13
|
or you can
|
|
14
14
|
= link_to('Abandon payment', effective_products.ring_wizard_path(existing), 'data-confirm': "Really delete #{existing}?", 'data-method': :delete, class: 'btn btn-danger')
|
|
15
15
|
to start over.
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
%p
|
|
11
11
|
Please
|
|
12
|
-
= link_to("Continue #{existing}", effective_products.stamp_wizard_build_path(existing, existing.next_step), 'data-turbolinks' => false, class: 'btn btn-primary')
|
|
12
|
+
= link_to("Continue #{existing}", effective_products.stamp_wizard_build_path(existing, existing.next_step), 'data-turbolinks' => false, 'data-turbo' => false, class: 'btn btn-primary')
|
|
13
13
|
or you can
|
|
14
14
|
= link_to('Abandon', effective_products.stamp_wizard_path(existing), 'data-confirm': "Really delete #{existing}?", 'data-method': :delete, class: 'btn btn-danger')
|
|
15
15
|
to start over.
|