8 lines
196 B
JavaScript
Raw Normal View History

2014-08-01 15:57:02 -04:00
$(document).on('page:load ready', function() {
$("div.progressbar").each(function() {
var element = this;
$(element).progressbar({ value: parseInt($(element).attr("rel")) });
});
2014-06-04 10:32:48 -04:00
});