From 0ba8fbc39a2114d153ce45274ac7d8578affd24a Mon Sep 17 00:00:00 2001 From: cedricfontaine Date: Mon, 28 Oct 2013 13:46:42 -0400 Subject: [PATCH] Update stores.js Phone number is already in the address field --- themes/default/js/stores.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/js/stores.js b/themes/default/js/stores.js index 38065181e..ffd8e64ba 100644 --- a/themes/default/js/stores.js +++ b/themes/default/js/stores.js @@ -113,7 +113,7 @@ function searchLocationsNear(center) createMarker(latlng, name, address, other, id_store, has_store_picture); bounds.extend(latlng); - $('#stores-table tr:last').after(''+parseInt(i + 1)+''+name+''+(has_store_picture === 1 ? '
' : '')+''+address+(phone !== '' ? '

'+translation_4+' '+phone : '')+''+distance+' '+distance_unit+''); + $('#stores-table tr:last').after(''+parseInt(i + 1)+''+name+''+(has_store_picture === 1 ? '
' : '')+''+address+''+distance+' '+distance_unit+''); $('#stores-table').show(); }