VRFS-595 fix format of session invitation notification

This commit is contained in:
Brian Smith 2013-10-03 08:51:25 -04:00
parent 0f70fe2eb2
commit 6192a1f20c
2 changed files with 6 additions and 3 deletions

View File

@ -538,11 +538,14 @@
}).error(app.ajaxError);
var participantHtml = "You have been invited to join a session with: <br/><br/>";
participantHtml += "<table><tbody>";
$.each(participants, function(index, val) {
participantHtml += "<img class='avatar_large' src='" + val.photo_url + "' />&nbsp;" + val.name + "<br/>";
participantHtml += "<tr><td><img class='avatar-small' src='" + val.photo_url + "' /></td><td>" + val.name + "</td></tr>";
});
participantHtml += "</tbody></table>";
// display notification
app.notify({
"title": "Session Invitation",

View File

@ -98,7 +98,7 @@
ms-filter: "alpha(opacity=50)";
}
li .avatar-small {
.avatar-small {
float:left;
padding:1px;
width:36px;
@ -110,7 +110,7 @@
border-radius:18px;
}
li .avatar-small img {
.avatar-small img {
width: 36px;
height: 36px;
-webkit-border-radius:18px;