From 3cb0e3c2d0b1049a7489df2f1b9b19e95cbb061e Mon Sep 17 00:00:00 2001 From: scottjehl Date: Mon, 22 Nov 2010 15:48:14 -0500 Subject: [PATCH] fixed typo in propExists. thx @johnbender --- js/jquery.mobile.support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.support.js b/js/jquery.mobile.support.js index 40655526..d3ecdcbe 100644 --- a/js/jquery.mobile.support.js +++ b/js/jquery.mobile.support.js @@ -19,7 +19,7 @@ function propExists( prop ){ var uc_prop = prop.charAt(0).toUpperCase() + prop.substr(1), props = (prop + ' ' + vendors.join(uc_prop + ' ') + uc_prop).split(' '); for(var v in props){ - if( fbCSS[ v ] !== undefined ){ + if( fbCSS[ props[v] ] !== undefined ){ return true; } }