Skip to content

Commit

Permalink
Fix a bug in IE6-8
Browse files Browse the repository at this point in the history
  • Loading branch information
lifesinger committed Feb 16, 2013
1 parent 65d7533 commit b70ac91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function config(data) {
var prev = configData[key]

// Merge object config such as alias, vars
if (isObject(prev)) {
if (prev && isObject(prev)) {
for (var k in curr) {
prev[k] = curr[k]
}
Expand Down

0 comments on commit b70ac91

Please sign in to comment.