Skip to content

Instantly share code, notes, and snippets.

@wemakeweb
Created April 24, 2012 19:46
Show Gist options
  • Save wemakeweb/2483079 to your computer and use it in GitHub Desktop.
Save wemakeweb/2483079 to your computer and use it in GitHub Desktop.
fix
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