The zippy now works.
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 13 Nov 2010 21:51:31 +0000 (16:51 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 13 Nov 2010 21:52:46 +0000 (16:52 -0500)
web_frontend/file.js

index 8c0ee5c28380a3bdab31f2fe1eb7203ba4b4af05..6e0288ddf73150cd25d4497a1a8d7d91c53bc409 100644 (file)
@@ -182,10 +182,11 @@ armadillo.File.prototype.actorHandler_ = function(e) {
   e.stopPropagation();
   if (!this.actor_.isInDocument())
     this.actor_.render(this.element_);
-  if (!this.zippy_)
+  if (!this.zippy_) {
     this.zippy_ = new goog.ui.AnimatedZippy(this.title_,
         this.actor_.getElement(), false);
-  this.zippy_.toggle();
+    this.zippy_.toggle();
+  }
 };
 
 /**