diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2011-04-26 09:45:27 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2011-04-26 09:45:27 -0400 |
commit | 08f52d69bd4f048fb6d5f6c861a5655eec8be1b0 (patch) | |
tree | c215023b35b392e2aac2d6340525178bc863898c /src/support.js | |
parent | fb65ba418a283ba70e179d442965cfbaa5bb7e92 (diff) | |
download | jquery-08f52d69bd4f048fb6d5f6c861a5655eec8be1b0.tar.gz jquery-08f52d69bd4f048fb6d5f6c861a5655eec8be1b0.zip |
jQuery.support core style guide correction. Fixes #8978
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js index 178bddf05..ea14bac63 100644 --- a/src/support.js +++ b/src/support.js @@ -198,7 +198,7 @@ jQuery.support = (function() { // Fails in WebKit before Feb 2011 nightlies // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right if ( document.defaultView && document.defaultView.getComputedStyle ) { - marginDiv = document.createElement('div'); + marginDiv = document.createElement( "div" ); marginDiv.style.width = "0"; marginDiv.style.marginRight = "0"; div.appendChild( marginDiv ); |