add a bit of doc in js

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1220981 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2011-12-19 22:38:16 +00:00
parent f02d7af029
commit e6b6aa055c
1 changed files with 15 additions and 0 deletions

View File

@ -16,6 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
/**
* log message in the console
*/
$.log = (function(message) {
if (typeof window.console != 'undefined' && typeof window.console.log != 'undefined') {
console.log(message);
@ -24,6 +28,10 @@ $.log = (function(message) {
}
});
/**
* return value of a param in the url
* @param name
*/
$.urlParam = function(name){
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
if (results) {
@ -65,11 +73,18 @@ displayWarningMessage=function(text,idToAppend){
$(textId).focus();
}
/**
* clear #main-content and call clearUserMessages
*/
screenChange=function(){
$("#main-content").html("");
clearUserMessages();
}
/**
* clear content of id if none clear content of #user-messages
* @param idToAppend
*/
clearUserMessages=function(idToAppend){
var textId = idToAppend ? $("#"+idToAppend) : $("#user-messages");
$(textId).html('');