Browse Source

src : remove docElement

pull/96/head
David DeSandro 14 years ago
parent
commit
825abac93b
  1. 8
      jquery.isotope.js

8
jquery.isotope.js

@ -23,9 +23,8 @@
var prefixes = 'Moz Webkit Khtml O Ms'.split(' '); var prefixes = 'Moz Webkit Khtml O Ms'.split(' ');
function getStyleProperty( propName, element ) { function getStyleProperty( propName ) {
element = element || document.documentElement; var style = document.documentElement.style,
var style = element.style,
prefixed; prefixed;
// test standard property first // test standard property first
@ -69,8 +68,7 @@
* CSS transitions, transforms, and 3D transforms. * CSS transitions, transforms, and 3D transforms.
*/ */
var docElement = document.documentElement, var tests = [
tests = [
{ {
name : 'csstransforms', name : 'csstransforms',
getResult : function() { getResult : function() {

Loading…
Cancel
Save