8 lines
129 B
JavaScript
8 lines
129 B
JavaScript
$().ready(function()
|
|
{
|
|
$('.projectline').each(function()
|
|
{
|
|
$(this).sparkline('html', {height:'25px'});
|
|
})
|
|
})
|