CC-2908: Add "Live Stream" title to live stream popup window

-custom logo
This commit is contained in:
martin 2011-10-04 17:18:36 -04:00
parent 7dd14efe27
commit 929e29182b
8 changed files with 79 additions and 50 deletions

View file

@ -10,31 +10,6 @@ function showErrorSections() {
}
}
function resizeImg(ele){
var img = $(ele);
var width = ele.width;
var height = ele.height;
// resize img proportionaly
if( width > height && width > 450){
var ratio = 450/width;
img.css("width", "450px");
var newHeight = height * ratio;
img.css("height", newHeight );
}else if( width < height && height > 450){
var ratio = 450/height;
img.css("height", "450px");
var newWidth = width * ratio;
img.css("width", newWidth );
}else if( width == height && width > 450){
img.css("height", "450px");
img.css("width", "450px" );
}
}
$(document).ready(function() {
var form = $("form");