mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
Fix jshint issues in src/geom
This commit is contained in:
parent
ebad4c1d38
commit
04d88b6c35
2 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ Phaser.Circle.prototype = {
|
||||||
*/
|
*/
|
||||||
distance: function (dest, round) {
|
distance: function (dest, round) {
|
||||||
|
|
||||||
if (typeof round === "undefined") { round = false }
|
if (typeof round === "undefined") { round = false; }
|
||||||
|
|
||||||
if (round)
|
if (round)
|
||||||
{
|
{
|
||||||
|
|
|
@ -411,7 +411,7 @@ Phaser.Point.equals = function (a, b) {
|
||||||
*/
|
*/
|
||||||
Phaser.Point.distance = function (a, b, round) {
|
Phaser.Point.distance = function (a, b, round) {
|
||||||
|
|
||||||
if (typeof round === "undefined") { round = false }
|
if (typeof round === "undefined") { round = false; }
|
||||||
|
|
||||||
if (round)
|
if (round)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue