Split utility mounts and hard points, add refuel time

This commit is contained in:
Colin McLeod
2015-05-26 20:18:20 -07:00
parent a8ec29d643
commit 484e2ca85f
5 changed files with 17 additions and 12 deletions

View File

@@ -30,7 +30,7 @@ angular.module('app', ['ngTouch', 'ui.router', 'ct.ui.router.extras.sticky', 'ui
$rootScope.fRound4 = function(d) { return d3.round(d, 4); };
$rootScope.fPct = d3.format('.2%');
$rootScope.fRPct = d3.format('%');
$rootScope.fTime = function(d) { return Math.floor(d/60) + ":" + ("00" + (d%60)).substr(-2,2); };
$rootScope.fTime = function(d) { return Math.floor(d/60) + ":" + ("00" + Math.floor(d%60)).substr(-2,2); };
// Global Event Listeners
$doc.bind('keyup', function (e) {