2010-04-20 18:09:09 +00:00
|
|
|
$(function(){
|
|
|
|
$('span.color').each(function(i,e){
|
|
|
|
e = $(e);
|
|
|
|
e.after('<span class="swatch" style="background-color:'+e.text()+';"></span>');
|
|
|
|
});
|
|
|
|
$('span.arg[data-default-value]').each(function(i,e){
|
|
|
|
e = $(e);
|
|
|
|
e.attr("title", "Defaults to: " + e.attr("data-default-value"))
|
2010-11-23 06:09:18 +00:00
|
|
|
});
|
|
|
|
});
|