appeal: Fix jQuery chaining that didn't work.
This commit is contained in:
parent
6908c135f2
commit
2c5a5f3a95
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@ $(document).ready(function() {
|
|||
textClass: "goalText",
|
||||
});
|
||||
}
|
||||
$('#siteprogressbar').empty().multiprogressbar(barParts);
|
||||
var $progressBar = $('#siteprogressbar');
|
||||
$progressBar.empty();
|
||||
$progressBar.multiprogressbar(barParts);
|
||||
|
||||
$('span#fundraiser-percentage').css({ 'color' : 'green',
|
||||
'font-weight' : 'bold',
|
||||
|
|
Loading…
Reference in a new issue