bf83b2d5b3
* Added susy and css-slideshow * Converted legacy css to scss, moved it and updated reference. * extracted some javascript to a file so it can be shared.
11 lines
301 B
JavaScript
11 lines
301 B
JavaScript
$(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"))
|
|
})
|
|
});
|