Update of /var/cvs/applications/searchrelate/templates
In directory james.mmbase.org:/tmp/cvs-serv14651

Modified Files:
        List.js.jsp 
Log Message:
details


See also: http://cvs.mmbase.org/viewcvs/applications/searchrelate/templates


Index: List.js.jsp
===================================================================
RCS file: /var/cvs/applications/searchrelate/templates/List.js.jsp,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- List.js.jsp 22 Oct 2008 10:04:40 -0000      1.28
+++ List.js.jsp 23 Oct 2008 15:16:15 -0000      1.29
@@ -17,7 +17,7 @@
  * -  mmsrCreated
  *
  * @author Michiel Meeuwissen
- * @version $Id: List.js.jsp,v 1.28 2008/10/22 10:04:40 michiel Exp $
+ * @version $Id: List.js.jsp,v 1.29 2008/10/23 15:16:15 michiel Exp $
  */
 
 
@@ -243,12 +243,13 @@
 
 List.prototype.status = function(message, fadeout) {
     this.find(this.div, "span.status").each(function() {
-        $(this).fadeIn("fast");
+        if (this.originalTextContent == null) this.originalTextContent = 
this.textContent;
+        $(this).fadeTo("fast", 1);
         $(this).empty();
         $(this).append(message);
         if (fadeout) {
             var p = this;
-            $(this).fadeOut(4000, function() {$(p).empty()} );
+            $(this).fadeTo(4000, 0.1, function() { $(p).empty(); 
$(p).append(p.originalTextContent); } );
         }
     });
 }
_______________________________________________
Cvs mailing list
Cvs@lists.mmbase.org
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to