spree_quick_cart 2.1.9 → 2.1.10
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4823ae7f03b4ad91ed52c6c32b2920c3e45d92c8
|
4
|
+
data.tar.gz: 3d78374366a4eae00748e9e7d0a00d947b0aaaa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 480b27326782f0c31ab3cbf3e2f0efdf80d4e95639fed2be6783e33eede9ce3938a1edb2367600ba718c7a4e750e117620365da033db8542d7728985d1921dca
|
7
|
+
data.tar.gz: 192dad2ba6890b3463c99c22820e3b2f14c3699b4e2d36c1572996f2c9088e834ce0e4145438a3d3de30f228fc3fe129c65a8081000791ae798d748909edec5c
|
@@ -58,8 +58,10 @@ function SpreeQuickCart() {
|
|
58
58
|
this.buttonEnabled = function(enabled) {
|
59
59
|
if (enabled == false){
|
60
60
|
that.submitButton.attr("disabled", "disabled");
|
61
|
+
that.submitButton.text("Adding..");
|
61
62
|
} else {
|
62
63
|
that.submitButton.removeAttr("disabled");
|
64
|
+
that.submitButton.text("Add to cart");
|
63
65
|
}
|
64
66
|
};
|
65
67
|
|
data/spree_quick_cart.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.platform = Gem::Platform::RUBY
|
4
4
|
s.name = 'spree_quick_cart'
|
5
|
-
s.version = '2.1.
|
5
|
+
s.version = '2.1.10'
|
6
6
|
s.summary = 'Insert add to cart button in product index page'
|
7
7
|
s.description = 'Adds js quick add to cart button to product catalogue'
|
8
8
|
s.required_ruby_version = '>= 2.0.0'
|