VRFS-595 fix format of session invitation notification
This commit is contained in:
parent
0f70fe2eb2
commit
6192a1f20c
|
|
@ -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 + "' /> " + 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",
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue