material_raingular 0.6.3 → 0.6.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc58e6497a149483a3d49af5b67aab60bcbb2d67
|
|
4
|
+
data.tar.gz: 5b5d9798684d6de83a2954fb0bd2f5f3732184dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8a8b65c5ea32feda5597becd364657ff84c8d11cf7480fdf137a91769c62b3aa650ee0209d37106405a501f77ac7b108cad7f3806b9afa10f4cc7a9fed49327
|
|
7
|
+
data.tar.gz: bd2110b7cd94edc52afa8c7abc4e256af20820a99452b460a01d413fce3d50f22a82483e8e40343b604c2f81fce0ed9bd6449b6cc3f0d5b6b9229232e342e3bd
|
data/Gemfile.lock
CHANGED
|
@@ -50,11 +50,14 @@ class ActiveRecord.$Resource extends Module
|
|
|
50
50
|
@$promise = @_save.bind(@)().then(callback,error)
|
|
51
51
|
return @$promise
|
|
52
52
|
_save: ->
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
53
|
+
if @id
|
|
54
|
+
res = @$paramSerializer.update(@)
|
|
55
|
+
unless Object.keys(res).length > 0
|
|
56
|
+
defer = @$q.defer()
|
|
57
|
+
defer.resolve(@)
|
|
58
|
+
return defer.promise
|
|
59
|
+
else
|
|
60
|
+
res = @$paramSerializer.create(@)
|
|
58
61
|
@$updatingKeys = Object.keys(res)
|
|
59
62
|
method = if @.id then 'put' else 'post'
|
|
60
63
|
params = {}
|
|
@@ -15,7 +15,7 @@ class @MaterialModalModel extends AngularScopedModel
|
|
|
15
15
|
@[key] = args[index]
|
|
16
16
|
for key in @constructor.$locals || []
|
|
17
17
|
@$scope[key] = @[key]
|
|
18
|
-
@$scope
|
|
18
|
+
@$scope[key] = @$mdDialog.hide for key in ['hide','cancel','close']
|
|
19
19
|
|
|
20
20
|
# Bind all functions not begining with _ to scope
|
|
21
21
|
for key, val of @constructor.prototype
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: material_raingular
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Moody
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-08-
|
|
11
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|