From e7820f795cff3ca571a8cc4db22a126bd424fd9f Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 26 Dec 2011 19:07:22 -0500 Subject: [PATCH] Switch the performDelete_ message from span to div --- web_frontend/actor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_frontend/actor.js b/web_frontend/actor.js index 15407cb..c225f61 100644 --- a/web_frontend/actor.js +++ b/web_frontend/actor.js @@ -161,8 +161,8 @@ armadillo.Actor.prototype.performMove_ = function() { * @private */ armadillo.Actor.prototype.performDelete_ = function() { - var content = $('Are you sure you want to delete:
' + - this.file_.getName() + '
'); + var content = $('
Are you sure you want to delete:
' + + this.file_.getName() + '
'); this.controlContainer_.append(content); var okCallback = function(e) { -- 2.22.5