From cb10e077bad908fb141ccf75684cdc14b355ca1b Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 7 Oct 2010 11:48:10 -0400 Subject: [PATCH] Call the superclass's impl in PathControl.enterDocument(). --- web_frontend/path_control.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web_frontend/path_control.js b/web_frontend/path_control.js index deaab58..50f69f1 100644 --- a/web_frontend/path_control.js +++ b/web_frontend/path_control.js @@ -163,6 +163,7 @@ armadillo.PathControl.prototype.decorateInternal = function(element) { * @inheritDoc */ armadillo.PathControl.prototype.enterDocument = function() { + armadillo.PathControl.superClass_.enterDocument.call(this); console.log('enter document ' + this.nameControl_.getElement()); this.nameControl_.getElement().focus(); }; -- 2.22.5