diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2013-04-07 14:42:42 +0200 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-04-17 23:21:39 -0400 |
commit | 35784a824456bf87bbe2fadad2717ad4f4000d14 (patch) | |
tree | a260ceaf7a84601c5a70e4cc32800ffccfa4e620 /src/support.js | |
parent | 0db70aa1fa084ccf1ef90d9b78382df95bdf9c85 (diff) | |
download | jquery-35784a824456bf87bbe2fadad2717ad4f4000d14.tar.gz jquery-35784a824456bf87bbe2fadad2717ad4f4000d14.zip |
Fix #13743. Remove deprecated support.boxModel. Close gh-1231.
add myself to AUTHORS.txt
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/support.js b/src/support.js index e05300c4c..4457cd708 100644 --- a/src/support.js +++ b/src/support.js @@ -66,9 +66,6 @@ jQuery.support = (function( support ) { // Where outerHTML is undefined, this still works support.html5Clone = document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>"; - // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode - support.boxModel = document.compatMode === "CSS1Compat"; - // Will be defined later support.inlineBlockNeedsLayout = false; support.shrinkWrapBlocks = false; |