Skip to content

Commit

Permalink
fix getEachProxy BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
qincheng committed Aug 25, 2014
1 parent f000506 commit f00b901
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions avalon.js
Original file line number Diff line number Diff line change
Expand Up @@ -3826,8 +3826,8 @@
for (var i = 0, n = eachProxyPool.length; i < n; i++) {
var proxy = eachProxyPool[i]
if (proxy.hasOwnProperty(param)) {
for (var i in source) {
proxy[i] = source[i]
for (var k in source) {
proxy[k] = source[k]
}
eachProxyPool.splice(i, 1)
return proxy
Expand Down
8 changes: 4 additions & 4 deletions avalon.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions avalon.mobile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3057,8 +3057,8 @@
for (var i = 0, n = eachProxyPool.length; i < n; i++) {
var proxy = eachProxyPool[i]
if (proxy.hasOwnProperty(param)) {
for (var i in source) {
proxy[i] = source[i]
for (var k in source) {
proxy[k] = source[k]
}
eachProxyPool.splice(i, 1)
return proxy
Expand Down
2 changes: 1 addition & 1 deletion avalon.mobile.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions avalon.observe.js
Original file line number Diff line number Diff line change
Expand Up @@ -2898,8 +2898,8 @@
for (var i = 0, n = eachProxyPool.length; i < n; i++) {
var proxy = eachProxyPool[i]
if (proxy.hasOwnProperty(param)) {
for (var i in source) {
proxy[i] = source[i]
for (var k in source) {
proxy[k] = source[k]
}
eachProxyPool.splice(i, 1)
return proxy
Expand Down

0 comments on commit f00b901

Please sign in to comment.