diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/CAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/CAController.js
index ee466e7..15e560b 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/CAController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/CAController.js
@@ -552,7 +552,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout
' kind="captions" srclang="en" label="On">
' + $scope.clickedCASummary + '
',
+ ' ![No video playback capabilities Here we are]()
' + $scope.clickedCASummary + '
',
//ajax: {
// url: 'app/views/ca/ca-view-detail.html'
@@ -581,12 +581,12 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout
var videoHeight = $('#divplayerinlineVideo div').height();
if (videoHeight <= 0)
videoHeight = 360;
- var textH = $('.well').height();
+ var textH = $('.video-subtitle').height();
textH = textH + 40;
var blackBorderHeight = jspContentHeight - (videoHeight + textH);
if ($('.jsPanel-content').length > 0) {
- $('.well').css('margin-bottom', blackBorderHeight);
+ $('.video-subtitle').css('margin-bottom', blackBorderHeight);
$('#divplayerinlineVideo').css('background', '#fff');
}
diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/CIController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/CIController.js
index 9ea57b8..193be77 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/CIController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/CIController.js
@@ -583,7 +583,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout
parentSlug: 'clinical-illustrations',
content: '
' +
'
' +
- '

' +
+ '

' +
'
' + $scope.clickedCISummary + '
' +
'
' +
'
',
@@ -612,14 +612,11 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout
var imgHeight = $('.img-thumbnail').find('img').height();
if (imgHeight <= 0)
imgHeight = 320;
- var textH = $('.well').height();
+ var textH = $('.img-subtitle').height();
textH = textH + 40;
var blackBorderHeight = jspContentHeight - (imgHeight + textH);
if ($('.jsPanel-content').length > 0) {
- $('.jsPanel-btn-min').attr('style', 'display: none');
- $('.jsPanel-btn-max').attr('style', 'display: none');
- $('.jsPanel-btn-norm').attr('style', 'display: none');
- $('.well').css('margin-bottom', blackBorderHeight);
+ $('.img-subtitle').css('margin-bottom', blackBorderHeight);
}
}