From c5f2e3e97433051980b0faebfbabc15aace4f00f Mon Sep 17 00:00:00 2001 From: Askar Timirgazin Date: Sat, 22 Feb 2014 17:11:21 +0400 Subject: [PATCH] issue #20 removed type casting --- js/astrotools.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/astrotools.js b/js/astrotools.js index 21dc3b0..eaaeb67 100644 --- a/js/astrotools.js +++ b/js/astrotools.js @@ -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()