Update to latest straps.js, with changed Base.create() method.

This commit is contained in:
Jürg Lehni 2013-10-14 23:37:43 +02:00
parent ba8e0b791e
commit ac5c45906f
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@
"test"
],
"devDependencies": {
"straps": "~1.1.5",
"straps": "~1.2.0",
"acorn": "git://github.com/paperjs/acorn#0.3.2",
"esprima": "~1.0.3",
"stats.js": "r11"

View file

@ -179,7 +179,7 @@ Base.inject(/** @lends Base# */{
list._index = index + 1;
return obj && options && options.clone ? obj.clone() : obj;
}
obj = Base.create(this);
obj = Base.create(this.prototype);
if (readIndex)
obj.__read = true;
// If options were provided, pass them on to the constructed object
@ -399,7 +399,7 @@ Base.inject(/** @lends Base# */{
// Create serialized type and pass collected arguments to
// constructor().
var args = res;
res = Base.create(type);
res = Base.create(type.prototype);
type.apply(res, args);
}
} else if (Base.isPlainObject(obj)) {