From abf84a7adb55dc6b42a33b19abfac1600b6f851c Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 28 Dec 2011 13:34:57 -0500 Subject: [PATCH] Show "Loading..." rather than the wrong name of the directory in the path control --- web_frontend/path_control.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_frontend/path_control.js b/web_frontend/path_control.js index e8792c1..3923507 100644 --- a/web_frontend/path_control.js +++ b/web_frontend/path_control.js @@ -134,7 +134,7 @@ armadillo.PathControl.prototype.createComponentNode_ = function(path, name) { this.fetchMenuContents_(path, name, menu); var option = $.createDom('option'); - option.text(name).attr('selected', 'selected'); + option.text('Loading...').attr('selected', 'selected'); menu.append(option); menu.change(this.componentChanged_.bind(this)); -- 2.22.5