62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
$(document).ready(function() {
|
|
var form = $("form");
|
|
|
|
$('.collapsible-header').live('click',function() {
|
|
$(this).next().toggle('fast');
|
|
$(this).toggleClass("close");
|
|
return false;
|
|
}).next().hide();
|
|
|
|
$("#SupportFeedback").click( function(){
|
|
var pub = $("#Publicise");
|
|
if( !$(this).is(':checked') ){
|
|
pub.removeAttr("checked");
|
|
pub.attr("disabled", true);
|
|
}else{
|
|
pub.removeAttr("disabled");
|
|
}
|
|
});
|
|
|
|
showErrorSections();
|
|
|
|
});
|
|
|
|
function showErrorSections() {
|
|
|
|
if($("soundcloud-settings .errors").length > 0) {
|
|
$("#soundcloud-settings").show();
|
|
$(window).scrollTop($("soundcloud-settings .errors").position().top);
|
|
}
|
|
if($("#support-settings .errors").length > 0) {
|
|
$("#support-settings").show();
|
|
$(window).scrollTop($("#support-settings .errors").position().top);
|
|
}
|
|
}
|
|
|
|
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" );
|
|
}
|
|
|
|
}
|
|
|
|
|