diff --git a/index.js b/index.js index 0449e40..18c42f3 100644 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ var prefix = (function prefix() { } // Nothing found so far? Webkit does not enumerate over the CSS properties of the style object. // However (prop in style) returns the correct value, so we'll have to test for - // the precence of a specific property + // the presence of a specific property if ('WebkitOpacity' in styleDeclaration) { return '-webkit-'; } if ('KhtmlOpacity' in styleDeclaration) { return '-khtml-'; } return '';