8 lines
196 B
JavaScript
8 lines
196 B
JavaScript
$(document).on('page:load ready', function() {
|
|
$("div.progressbar").each(function() {
|
|
var element = this;
|
|
$(element).progressbar({ value: parseInt($(element).attr("rel")) });
|
|
});
|
|
});
|
|
|