summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/event_handlers.js
diff options
context:
space:
mode:
authorjamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-23 00:33:49 +0000
committerjamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-23 00:33:49 +0000
commit0f5b0b98b306cea59ea0b818566ce284da8ead39 (patch)
tree6102da8494ec6b911543fec338d19275b03a850a /remoting/webapp/event_handlers.js
parent0a3910fea5c51cd2dcfede76e1a4256ed2effe2b (diff)
downloadchromium_src-0f5b0b98b306cea59ea0b818566ce284da8ead39.zip
chromium_src-0f5b0b98b306cea59ea0b818566ce284da8ead39.tar.gz
chromium_src-0f5b0b98b306cea59ea0b818566ce284da8ead39.tar.bz2
Make daemon state orthogonal to UI mode.
Having the daemon state, which affects the home page, mixed in with the general UI modal state is going to cause problems when the home page is visible behind modal dialogs (it will essentially mean to AppModes for each dialog). Better to have it as an orthogonal state. BUG=115350 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/9372128 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123153 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/event_handlers.js')
-rw-r--r--remoting/webapp/event_handlers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/webapp/event_handlers.js b/remoting/webapp/event_handlers.js
index 88a4e28..3b99b91 100644
--- a/remoting/webapp/event_handlers.js
+++ b/remoting/webapp/event_handlers.js
@@ -39,7 +39,7 @@ function onLoad() {
};
var stopDaemon = function() {
remoting.daemonPlugin.stop();
- remoting.setMode(remoting.daemonPlugin.uiMode());
+ remoting.daemonPlugin.updateDom();
};
/** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
var actions = [