1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-06 03:49:56 +02:00

Whitespace/indentation cleanup.

This commit is contained in:
Paul 'flowerysong' Arthur 2010-06-24 03:04:06 +00:00
parent 119e14167d
commit 330d89968b
2 changed files with 85 additions and 85 deletions

View file

@ -37,7 +37,7 @@ function ajaxPost(url, input, source) {
method: 'post', method: 'post',
parameters: $(input).serialize(true), parameters: $(input).serialize(true),
onSuccess: processContents onSuccess: processContents
} }
} // ajaxPost } // ajaxPost
// ajaxPut // ajaxPut
@ -77,5 +77,5 @@ function updateElement(contentXML) {
var newID = contentXML.getAttribute('div'); var newID = contentXML.getAttribute('div');
if($(newID)) { if($(newID)) {
$(newID).update(contentXML.firstChild.nodeValue); $(newID).update(contentXML.firstChild.nodeValue);
} }
} // updateElement } // updateElement

View file

@ -25,7 +25,7 @@ function flipField(field) {
} }
else { else {
$(field).disabled = false; $(field).disabled = false;
} }
} // flipField } // flipField
// updateText // updateText
@ -43,7 +43,7 @@ function toggleVisible(element) {
} }
else { else {
$(element).style.display = 'block'; $(element).style.display = 'block';
} }
} // toggleVisible } // toggleVisible
// delayRun // delayRun
@ -58,7 +58,7 @@ function delayRun(element, time, method, page, source) {
clearTimeout(element.zid); clearTimeout(element.zid);
} }
element.zid = setTimeout(action,time); element.zid = setTimeout(action, time);
} // delayRun } // delayRun
@ -76,7 +76,7 @@ function reloadUtil(target) {
} }
else { else {
$('util_iframe').src = $('util_iframe').src; $('util_iframe').src = $('util_iframe').src;
} }
} // reloadUtil } // reloadUtil
// reloadRedirect // reloadRedirect