Private GIT

Skip to content
Snippets Groups Projects
Commit 288d488d authored by JackDandy's avatar JackDandy
Browse files

Merge pull request #126 from adam111316/feature/FixPosterProgressSort

Fix progress sort direction for poster layout view on home page
parents e01859ba 9cfad228
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,7 @@
* Remove commented out html from display show accidently left in during UI changes
* Fix display issue of season tables in displayShow view / Display Specials
* Change to suppress reporting of Tornado exception error 1
* Fix progress sort direction for poster layout view on home page
### 0.2.1 (2014-10-22 06:41:00 UTC)
......
......@@ -174,7 +174,7 @@
},
progress: function( itemElem ) {
var progress = \$( itemElem ).attr('data-progress');
return progress.length && parseInt( progress, 10 ) * -1 || Number.POSITIVE_INFINITY;
return progress.length && parseInt( progress, 10 ) || Number.NEGATIVE_INFINITY;
}
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment