ende 0.4.4 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -26,14 +26,10 @@ function require(path, parent, orig) {
26
26
  // perform real require()
27
27
  // by invoking the module's
28
28
  // registered function
29
- if (!module._resolving && !module.exports) {
30
- var mod = {};
31
- mod.exports = {};
32
- mod.client = mod.component = true;
33
- module._resolving = true;
34
- module.call(this, mod.exports, require.relative(resolved), mod);
35
- delete module._resolving;
36
- module.exports = mod.exports;
29
+ if (!module.exports) {
30
+ module.exports = {};
31
+ module.client = module.component = true;
32
+ module.call(this, module.exports, require.relative(resolved), module);
37
33
  }
38
34
 
39
35
  return module.exports;
@@ -26129,15 +26125,15 @@ extensions = {
26129
26125
  this.validation = jQuery.when.apply(jQuery, results);
26130
26126
  this.validation.done(doned);
26131
26127
  this.validation.fail(failed);
26132
- this.validation.then(function(record) {
26128
+ return this.validation.done(function(record) {
26133
26129
  var old_dirty;
26134
26130
 
26135
26131
  old_dirty = record.dirty;
26136
26132
  record.dirty = null;
26137
26133
  record.validated || (record.validated = true);
26138
- return record.dirty = old_dirty;
26134
+ record.dirty = old_dirty;
26135
+ return record;
26139
26136
  });
26140
- return this.validation;
26141
26137
  }
26142
26138
  }
26143
26139
  };
@@ -26193,24 +26189,11 @@ model.rivets = function() {
26193
26189
  };
26194
26190
 
26195
26191
  });
26196
-
26197
-
26198
-
26199
-
26200
-
26201
-
26202
-
26203
-
26204
-
26205
-
26206
-
26207
-
26208
-
26209
-
26210
26192
  require.alias("pluma-assimilate/dist/assimilate.js", "indemma/deps/assimilate/dist/assimilate.js");
26211
26193
  require.alias("pluma-assimilate/dist/assimilate.js", "indemma/deps/assimilate/index.js");
26212
26194
  require.alias("pluma-assimilate/dist/assimilate.js", "assimilate/index.js");
26213
26195
  require.alias("pluma-assimilate/dist/assimilate.js", "pluma-assimilate/index.js");
26196
+
26214
26197
  require.alias("component-type/index.js", "indemma/deps/type/index.js");
26215
26198
  require.alias("component-type/index.js", "type/index.js");
26216
26199
 
@@ -26268,4 +26251,6 @@ require.alias("chaijs-chai/index.js", "chai/index.js");
26268
26251
  require.alias("chaijs-assertion-error/index.js", "chaijs-chai/deps/assertion-error/index.js");
26269
26252
  require.alias("chaijs-assertion-error/index.js", "chaijs-chai/deps/assertion-error/index.js");
26270
26253
  require.alias("chaijs-assertion-error/index.js", "chaijs-assertion-error/index.js");
26271
- require.alias("chaijs-chai/index.js", "chaijs-chai/index.js");
26254
+
26255
+ require.alias("chaijs-chai/index.js", "chaijs-chai/index.js");
26256
+