netzke-basepack 0.12.4 → 0.12.5
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.
data/CHANGELOG.md
CHANGED
@@ -35,7 +35,7 @@ Ext.define('Netzke.classes.Basepack.Grid.Proxy', {
|
|
35
35
|
var store = this.grid.getStore();
|
36
36
|
this.grid.serverDelete(data, function(res){
|
37
37
|
var errors = [];
|
38
|
-
for (id in res) {
|
38
|
+
for (var id in res) {
|
39
39
|
var error;
|
40
40
|
if (error = res[id].error) {
|
41
41
|
errors.push(error);
|
@@ -46,7 +46,7 @@ Ext.define('Netzke.classes.Basepack.Tree.Proxy', {
|
|
46
46
|
var store = this.grid.getStore();
|
47
47
|
this.grid.serverDelete(data, function(res){
|
48
48
|
var errors = [];
|
49
|
-
for (id in res) {
|
49
|
+
for (var id in res) {
|
50
50
|
var error;
|
51
51
|
if (error = res[id].error) {
|
52
52
|
errors.push(error);
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netzke-basepack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-07-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: netzke-core
|