Skip to content

Commit

Permalink
issue #20 removed type casting
Browse files Browse the repository at this point in the history
  • Loading branch information
AnotherOneAckap committed Feb 22, 2014
1 parent ea041a8 commit c5f2e3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/astrotools.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ var AstroTools = (function() {
// sending to others
var
coords = $row.attr('data-coords').split(' '),
ra = sexaToDec(coords[0]),
dec = sexaToDec(coords[1]);
ra = coords[0],
dec = coords[1];
message = new samp.Message('coord.pointAt.sky', {
'ra': ra.toString(),
'dec': dec.toString()
Expand Down

0 comments on commit c5f2e3e

Please sign in to comment.