Fix the download action to work through MFE
authorRobert Sesek <rsesek@bluestatic.org>
Wed, 28 Dec 2011 19:31:54 +0000 (14:31 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Wed, 28 Dec 2011 19:31:54 +0000 (14:31 -0500)
web_frontend/actor.js

index 1e346326b5324979dde06df873169c8ff9a595b7..05ef26cf123e0945ee127f0192171ddc4b97a44f 100644 (file)
@@ -223,7 +223,7 @@ armadillo.Actor.prototype.performTVRename_ = function() {
  * @private
  */
 armadillo.Actor.prototype.performDownload_ = function() {
-  window.location = '/download?path=' + this.file_.getFullPath();
+  window.location = 'download?path=' + this.file_.getFullPath();
 };
 
 /**