]> source.dussan.org Git - archiva.git/commitdiff
add a bit of doc in js
authorOlivier Lamy <olamy@apache.org>
Mon, 19 Dec 2011 22:38:16 +0000 (22:38 +0000)
committerOlivier Lamy <olamy@apache.org>
Mon, 19 Dec 2011 22:38:16 +0000 (22:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1220981 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/utils.js

index 9c350a04e303d6d50cdff08f10765130a5b2842e..26014bde0a65c6887742518178c1359f7dd01030 100644 (file)
  * 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('');