pinkman 0.9.4 → 0.9.4.1
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/controller.coffee +1 -1
- data/lib/pinkman/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ba83297b6a3aff4f371fe1c087740464a97b385
|
|
4
|
+
data.tar.gz: 8fbb1233575c28e4b5d2b50bfd9451f3caeab268
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56958800c4f03f3029d3f18ca618460e23ae1fd55c42d65e096f350c9167d8ed2a99e883f678b59c388391400740e804f870626d36265fba991108ed32ffba5f
|
|
7
|
+
data.tar.gz: 831921640350a421f8129e384c9b434c6c75a03fb4fdc761c040d61010e2d76d3af11203d823352540beefa20749c4e24bf076837f558f9bfcb32fd4bf54be6a
|
|
@@ -81,7 +81,7 @@ class window.PinkmanController extends window.PinkmanObject
|
|
|
81
81
|
callback = if typeof opt == 'function' then opt else opt['callback']
|
|
82
82
|
catch
|
|
83
83
|
throw 'Callback not found.'
|
|
84
|
-
params = if (typeof opt == 'object' and opt['params']?) then
|
|
84
|
+
params = if (typeof opt == 'object' and opt['params']?) then opt['params'] else new Object
|
|
85
85
|
params.channel = channel
|
|
86
86
|
Pinkman.cable.subscriptions.create params, received: callback
|
|
87
87
|
|
data/lib/pinkman/version.rb
CHANGED