Created
April 24, 2012 19:46
-
-
Save wemakeweb/2483079 to your computer and use it in GitHub Desktop.
fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
if(css && css !== ""){ | |
parser.parse(css); | |
} | |
for( var rule in builded ){ | |
string += rule + '{'; | |
for( var property in builded[rule]){ | |
string += property + ':' + builded[rule][property] + ';' | |
} | |
string += '}'; | |
} | |
return string; | |
} catch(err){ | |
$Log.warn('Error while prefixing css, shipped unprefixed: ' + err); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment