Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x

This commit is contained in:
Sarven Capadisli 2009-11-19 18:22:05 +00:00
commit 664239d39f
1 changed files with 3 additions and 1 deletions

View File

@ -32,8 +32,10 @@ $(document).ready(function() {
pt = new mxn.LatLonPoint(lat, lon);
mkr = new mxn.Marker(pt);
mkr.setLabel();
mkr.setIcon(n['user']['profile_image_url']);
mkr.setInfoBubble(n['html']);
mkr.setInfoBubble('<a href="'+ n['user']['profile_url'] + '">' + n['user']['screen_name'] + '</a>' + ' ' + n['html'] +
'<br/><a href="'+ n['url'] + '">'+ n['created_at'] + '</a>');
mapstraction.addMarker(mkr);
}