From a96e444cdb878e112a94fcc8e9039fc40c985120 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Sun, 2 Sep 2012 00:14:18 +0800 Subject: [PATCH] Support for IE property hacks. Allows for properties like *zoom: 1 --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index 2cacbf8..ca73d6e 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,3 @@ - /** * Module dependencies. */ @@ -105,7 +104,7 @@ module.exports = function(css){ function declaration() { // prop - var prop = match(/^([-\w]+)\s*/); + var prop = match(/^(\*?[-\w]+)\s*/); if (!prop) return; prop = prop[0];