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
@@ -1,4 +1,7 @@
1
- # 0.12.4 - WIP
1
+ # 0.12.5 - 2015-07-07
2
+ * Fix potential problems caused by changing window.id on deleting grid records
3
+ *
4
+ # 0.12.4 - 2015-06-22
2
5
  * Remove (broken) `load_inline_data` option
3
6
 
4
7
  # 0.12.3 - 2015-06-16
@@ -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);
@@ -1,5 +1,5 @@
1
1
  module Netzke
2
2
  module Basepack
3
- VERSION = "0.12.4"
3
+ VERSION = "0.12.5"
4
4
  end
5
5
  end
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
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-06-22 00:00:00.000000000 Z
12
+ date: 2015-07-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: netzke-core