diff options
Diffstat (limited to 'src/css/defaultDisplay.js')
-rw-r--r-- | src/css/defaultDisplay.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css/defaultDisplay.js b/src/css/defaultDisplay.js index 631b9ba8a..046ae91b9 100644 --- a/src/css/defaultDisplay.js +++ b/src/css/defaultDisplay.js @@ -19,7 +19,7 @@ function actualDisplay( name, doc ) { // getDefaultComputedStyle might be reliably used only on attached element display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ? - // Use of this method is a temporary fix (more like optmization) until something better comes along, + // Use of this method is a temporary fix (more like optimization) until something better comes along, // since it was removed from specification and supported only in FF style.display : jQuery.css( elem[ 0 ], "display" ); |