From 0cafec13bd21a527cd82c118701c0a449b7872a8 Mon Sep 17 00:00:00 2001 From: scottjehl Date: Wed, 4 Jan 2012 16:35:12 +0700 Subject: [PATCH] fixed a typo in the query --- 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 affa8d6b..62e5311b 100644 --- a/js/jquery.mobile.support.js +++ b/js/jquery.mobile.support.js @@ -30,7 +30,7 @@ function propExists( prop ) { // Thanks to Modernizr src for this test idea function transform3dTest() { var prop = "transform-3d"; - return $.mobile.media( "(-" + vendors.join( "-" + prop + "),(-" ) + prop + "),(" + prop + ")" ); + return $.mobile.media( "(-" + vendors.join( "-" + prop + "),(-" ) + "-" + prop + "),(" + prop + ")" ); } // Test for dynamic-updating base tag support ( allows us to avoid href,src attr rewriting )