pinkman 1.5.3 → 1.5.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/pinkman_base/pinkman.coffee +4 -5
- data/lib/pinkman/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61824abcf47038822f4caa850c81846e1b5d338141cafd4c401ed3bee71a9518
|
|
4
|
+
data.tar.gz: d37fb8798934f041f8753f65607491adac7a27b83de152f96ff85b388287ef92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9533942d6ed78290e244b23289b6fbbc1886dab1507fcb6f9e438b918f60866ff2dec9a8b4a337f8eef077efbc701ae5686fc0c0663307d6133f9b1d147fab6
|
|
7
|
+
data.tar.gz: c32ba0abc7b84d6816baf932269710e261dd7d9bb52218d2d75ecb8de265ebd7898defd6b761190e2baa4ce98f07e88c3a0d62332dc3f5cbb62007943beae8bb
|
|
@@ -280,12 +280,11 @@ class window.Pinkman
|
|
|
280
280
|
contentType: false
|
|
281
281
|
ajax.done (response) =>
|
|
282
282
|
if response? and response.errors?
|
|
283
|
-
options.error(
|
|
284
|
-
return false
|
|
283
|
+
options.error(response) if $p.isFunction(options.error)
|
|
285
284
|
else
|
|
286
|
-
options.success(response) if
|
|
287
|
-
options.complete(response) if
|
|
288
|
-
|
|
285
|
+
options.success(response) if $p.isFunction(options.success)
|
|
286
|
+
options.complete(response) if $p.isFunction(options.complete)
|
|
287
|
+
return response
|
|
289
288
|
else
|
|
290
289
|
return false
|
|
291
290
|
|
data/lib/pinkman/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pinkman
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Agilso Oliveira
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-02-
|
|
11
|
+
date: 2020-02-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|