This commit is contained in:
Gwenhael Le Moine 2014-08-01 22:48:58 +02:00
parent 20d1b04755
commit 17cce5cd64

View file

@ -23,7 +23,6 @@ app.controller( 'BalanceCtrl',
};
$scope.toolTipContentFunction = function() {
return function( key, x, y, e, graph ) {
//return $filter( 'json' )( $scope.balance.details[ key ] );
var details = $scope.balance.details[ key ];
return '<h3>' + details.key + '</h3>'
+ '<table><tr><th>Date</th><th>Payee</th><th>Amount</th></tr>'
@ -35,7 +34,6 @@ app.controller( 'BalanceCtrl',
+ transaction.currency + '</td></tr>';
}).join( '' )
+ '</table>';
};
};