improve style a bit
This commit is contained in:
@ -21,9 +21,11 @@ if(typeof window.plugin !== 'function') window.plugin = function() {};
|
||||
window.plugin.portalAddress = function() {};
|
||||
|
||||
window.plugin.portalAddress.portalDetail = function(data) {
|
||||
//If there's 4 sets of comma delimieted info the last one is the country, so get rid of it. If the country
|
||||
//is in the [2] then it doesn't matter because address is usually short enough to fit.
|
||||
var address = data.portalDetails.portalV2.descriptiveText.ADDRESS.split(',').splice(0,3).join(',');
|
||||
// If there's 4 sets of comma delimieted info the last one is the
|
||||
// country, so get rid of it. If the country is in the [2] then it
|
||||
// doesn't matter because address is usually short enough to fit.
|
||||
var d = data.portalDetails.portalV2;
|
||||
var address = d.descriptiveText.ADDRESS.split(',').splice(0,3).join(',');
|
||||
$('.imgpreview').append('<div id="address">'+address+'</div>');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user