From: Robert Sesek Date: Wed, 28 Dec 2011 18:34:57 +0000 (-0500) Subject: Show "Loading..." rather than the wrong name of the directory in the path control X-Git-Tag: 0.8.600.0~15^2~3 X-Git-Url: https://src.bluestatic.org/?a=commitdiff_plain;h=abf84a7adb55dc6b42a33b19abfac1600b6f851c;p=armadillo.git Show "Loading..." rather than the wrong name of the directory in the path control --- 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));