* VRFS-3034 - workaround QtWebkit crash by conditionalizing the 'crashy' rule

This commit is contained in:
Seth Call 2015-04-15 15:14:41 -05:00
parent 19ad2fbcc5
commit 42b58a97e8
2 changed files with 6 additions and 2 deletions

View File

@ -172,6 +172,7 @@
function afterShow(data) {
$fluidTracks.addClass('showing');
$openBackingTrack.removeClass('disabled');
if(!context.JK.JamServer.connected) {
@ -500,7 +501,7 @@
}
function beforeHide(data) {
$fluidTracks.removeClass('showing');
if(screenActive) {
// this path is possible if FTUE is invoked on session page, and they cancel
sessionModel.leaveCurrentSession()

View File

@ -258,10 +258,13 @@
}
.session-fluidtracks {
width:calc(100% - #{$mytracks-minwidth});
position:relative;
float:left;
@include border_box_sizing;
&.showing {
width:calc(100% - #{$mytracks-minwidth}); // VRFS-3034
}
}
.session-livetracks {