File tree 4 files changed +17
-5
lines changed
4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 4
4
[ here] ( https://github.com/OpenSourcePolicyCenter/PolicyBrain/pulls?q=is%3Apr+is%3Aclosed )
5
5
for a complete commit history.
6
6
7
+ Release 1.7.6 on 2018-11-09
8
+ ----------------------------
9
+ ** Major Changes**
10
+ - None
11
+
12
+ ** Minor Changes**
13
+ - None
14
+
15
+ ** Bug Fixes**
16
+ - [ #948 ] ( https://github.com/ospc-org/ospc.org/pull/948 ) - No longer need to scale numbers - Hank Doupe
17
+
18
+
7
19
Release 1.7.5 on 2018-11-07
8
20
----------------------------
9
21
** Major Changes**
Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ $(function() {
46
46
var j = 0 ;
47
47
_ . each ( row . cells , function ( cell ) {
48
48
if ( _ . isEmpty ( cell . year_values ) ) {
49
- that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'tot_value' ] = that . numberWithCommas ( ( parseFloat ( cell . value / cell . format . divisor ) ) . toFixed ( cell . format . decimals ) ) ;
49
+ that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'tot_value' ] = that . numberWithCommas ( ( parseFloat ( cell . value ) ) . toFixed ( cell . format . decimals ) ) ;
50
50
} else {
51
51
_ . each ( _ . keys ( cell . year_values ) , function ( year ) {
52
- that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'year_values' ] [ year ] = that . numberWithCommas ( ( parseFloat ( cell . year_values [ year ] / cell . format . divisor ) ) . toFixed ( cell . format . decimals ) ) ;
52
+ that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'year_values' ] [ year ] = that . numberWithCommas ( ( parseFloat ( cell . year_values [ year ] ) ) . toFixed ( cell . format . decimals ) ) ;
53
53
} ) ;
54
54
}
55
55
j ++ ;
Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ $(function() {
46
46
var j = 0 ;
47
47
_ . each ( row . cells , function ( cell ) {
48
48
if ( _ . isEmpty ( cell . year_values ) ) {
49
- that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'tot_value' ] = that . numberWithCommas ( ( parseFloat ( cell . value / cell . format . divisor ) ) . toFixed ( cell . format . decimals ) ) ;
49
+ that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'tot_value' ] = that . numberWithCommas ( ( parseFloat ( cell . value ) ) . toFixed ( cell . format . decimals ) ) ;
50
50
} else {
51
51
_ . each ( _ . keys ( cell . year_values ) , function ( year ) {
52
- that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'year_values' ] [ year ] = that . numberWithCommas ( ( parseFloat ( cell . year_values [ year ] / cell . format . divisor ) ) . toFixed ( cell . format . decimals ) ) ;
52
+ that . get ( 'rows' ) [ i ] [ 'cells' ] [ j ] [ 'year_values' ] [ year ] = that . numberWithCommas ( ( parseFloat ( cell . year_values [ year ] ) ) . toFixed ( cell . format . decimals ) ) ;
53
53
} ) ;
54
54
}
55
55
j ++ ;
Original file line number Diff line number Diff line change 58
58
]
59
59
60
60
61
- WEBAPP_VERSION = "1.7.5 "
61
+ WEBAPP_VERSION = "1.7.6 "
62
62
63
63
# Application definition
64
64
You can’t perform that action at this time.
0 commit comments