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

Commit

Permalink
Remove braces for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Oct 16, 2013
1 parent 157d19d commit 375e7cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MutationObserver.js
Expand Up @@ -540,11 +540,11 @@
global.JsMutationObserver = JsMutationObserver;

// Provide unprefixed MutationObserver with native or JS implementation
if (!global.MutationObserver && global.WebKitMutationObserver) {
if (!global.MutationObserver && global.WebKitMutationObserver)
global.MutationObserver = global.WebKitMutationObserver;
}
if (!global.MutationObserver) {

if (!global.MutationObserver)
global.MutationObserver = JsMutationObserver;
}


})(this);

0 comments on commit 375e7cb

Please sign in to comment.