...
|
...
|
@@ -139,7 +139,7 @@ $.get('/home/locationList').then(function(html) { |
|
|
addressHammer.on('tap', function(e) {
|
|
|
var $this = $(e.target);
|
|
|
|
|
|
if (e.target.tagName !== 'li') {
|
|
|
if (e.target.tagName.toLowerCase() !== 'li') {
|
|
|
$this = $this.parent('li');
|
|
|
}
|
|
|
newArea.push($this.children('.caption').text());
|
...
|
...
|
|