We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d15d65 commit 1232922Copy full SHA for 1232922
2 files changed
project/src/radix.js
@@ -156,7 +156,7 @@
156
wrapper.appendChild( symbol );
157
158
// draw point descriptions
159
- var textsToShow = [(Math.round(this.data.planets[point.name][0]) % 30).toString()];
+ var textsToShow = [(Math.floor(this.data.planets[point.name][0]) % 30).toString()];
160
161
var zodiac = new astrology.Zodiac(this.data.cusps);
162
project/src/transit.js
@@ -117,7 +117,7 @@
117
118
119
120
- var textsToShow = [(Math.round(planets[point.name][0]) % 30).toString()];
+ var textsToShow = [(Math.floor(planets[point.name][0]) % 30).toString()];
121
122
123
if(planets[point.name][1] && zodiac.isRetrograde(planets[point.name][1])){
0 commit comments