Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #12 from clog/bugfix
Browse files Browse the repository at this point in the history
Delete bug in ie7, ie8
  • Loading branch information
jed committed Dec 26, 2012
2 parents 7fe3ed7 + 1098b5e commit 4a7eb9d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/domo.js
Expand Up @@ -182,7 +182,11 @@
}

else {
delete global.domo
try {
delete global.domo
} catch (e) {
global.domo = undefined
}

for (key in this) {
if (key in values) {
Expand Down

0 comments on commit 4a7eb9d

Please sign in to comment.