Changeset 1965970
- Timestamp:
- 10/30/2018 04:22:28 PM (7 years ago)
- Location:
- amilia-store/trunk
- Files:
-
- 2 edited
-
amilia-store-standings.php (modified) (1 diff)
-
amilia-store.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
amilia-store/trunk/amilia-store-standings.php
r1965968 r1965970 225 225 teams.push(team); 226 226 } 227 teams.sort(function(a, b) {227 teams.sort(function(a, b) { 228 228 if (a.Pts == b.Pts) { 229 229 if (a.F == b.F) { 230 230 if (a.GD == b.GD) return 0; 231 return a.GD < b.GD ? -1 :1;231 return a.GD < b.GD ? 1 : -1; 232 232 } 233 return a.F < b.F ? -1 :1;234 } 235 return a.Pts < b.Pts ? -1 :1;233 return a.F < b.F ? 1 : -1; 234 } 235 return a.Pts < b.Pts ? 1 : -1; 236 236 }); 237 237 -
amilia-store/trunk/amilia-store.php
r1965968 r1965970 6 6 Author: Martin Drapeau <martin.drapeau@amilia.com> 7 7 Copyright: 2014-2018 Amilia 8 Version: 2.7. 68 Version: 2.7.7 9 9 Author URI: http://www.amilia.com/ 10 10 License: Apache License 2.0
Note: See TracChangeset
for help on using the changeset viewer.