Skip to content
Snippets Groups Projects
Commit bb4490c2 authored by Emmanuel ROHEE's avatar Emmanuel ROHEE
Browse files

Show image fullscreen when clicking on the thumbnail

parent e4f0e1af
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,10 @@ h1 { ...@@ -66,6 +66,10 @@ h1 {
background-color: #faa; background-color: #faa;
} }
.mouse-pointer {
cursor: pointer;
}
/*** Participant list ***/ /*** Participant list ***/
#usersTableWrapper { #usersTableWrapper {
...@@ -89,7 +93,6 @@ h1 { ...@@ -89,7 +93,6 @@ h1 {
height: 100px; height: 100px;
position: relative; position: relative;
background-color: #000; background-color: #000;
cursor: pointer;
} }
.userAvatar .userAvatarImage { .userAvatar .userAvatarImage {
...@@ -245,6 +248,26 @@ h1 { ...@@ -245,6 +248,26 @@ h1 {
text-align: left ! important; text-align: left ! important;
} }
#room-fullscreen-image {
position: absolute;
top: 0px;
height: 0px;
width: 100%;
height: 100%;
}
#room-fullscreen-image img {
max-width: 100%;
max-height: 100%;
bottom: 0;
left: 0;
margin: auto;
overflow: auto;
position: fixed;
right: 0;
top: 0;
}
/*** Profile ***/ /*** Profile ***/
.profile-avatar { .profile-avatar {
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<div id="usersTableWrapper"> <div id="usersTableWrapper">
<table id="usersTable"> <table id="usersTable">
<tr ng-repeat="member in members | orderMembersList"> <tr ng-repeat="member in members | orderMembersList">
<td class="userAvatar" ng-click="goToUserPage(member.id)"> <td class="userAvatar mouse-pointer" ng-click="goToUserPage(member.id)">
<img class="userAvatarImage" <img class="userAvatarImage"
ng-src="{{member.avatar_url || 'img/default-profile.jpg'}}" ng-src="{{member.avatar_url || 'img/default-profile.jpg'}}"
alt="{{ member.displayname || member.id.substr(0, member.id.indexOf(':')) }}" alt="{{ member.displayname || member.id.substr(0, member.id.indexOf(':')) }}"
...@@ -46,7 +46,8 @@ ...@@ -46,7 +46,8 @@
<img class="image" ng-src="{{ msg.content.url }}"/> <img class="image" ng-src="{{ msg.content.url }}"/>
</div> </div>
<div ng-show='msg.content.thumbnail_url' ng-style="{ 'height' : msg.content.thumbnail_info.h }"> <div ng-show='msg.content.thumbnail_url' ng-style="{ 'height' : msg.content.thumbnail_info.h }">
<img class="image" ng-src="{{ msg.content.thumbnail_url }}"/> <img class="image mouse-pointer" ng-src="{{ msg.content.thumbnail_url }}"
ng-click="$parent.fullScreenImageURL = msg.content.url"/>
</div> </div>
</div> </div>
</div> </div>
...@@ -96,4 +97,8 @@ ...@@ -96,4 +97,8 @@
</div> </div>
</div> </div>
<div id="room-fullscreen-image" ng-show="fullScreenImageURL" ng-click="fullScreenImageURL = undefined;">
<img ng-src="{{ fullScreenImageURL }}"/>
</div>
</div> </div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment