diff options
author | simonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-19 22:00:16 +0000 |
---|---|---|
committer | simonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-19 22:00:16 +0000 |
commit | 7d113a137bd474b7e3d8718bb022e591137ee704 (patch) | |
tree | 526f4f5921e5dc0e65a9759b71af37113bd15d8c | |
parent | 98866ca3aee981acde5ac3f135beb8d3baa286e7 (diff) | |
download | chromium_src-7d113a137bd474b7e3d8718bb022e591137ee704.zip chromium_src-7d113a137bd474b7e3d8718bb022e591137ee704.tar.gz chromium_src-7d113a137bd474b7e3d8718bb022e591137ee704.tar.bz2 |
[Chromoting] Display long local host names correctly.
BUG=121512
Review URL: https://chromiumcodereview.appspot.com/10145003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133067 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | remoting/webapp/host_controller.js | 1 | ||||
-rw-r--r-- | remoting/webapp/main.html | 10 |
2 files changed, 4 insertions, 7 deletions
diff --git a/remoting/webapp/host_controller.js b/remoting/webapp/host_controller.js index 74aeacf..ab76339 100644 --- a/remoting/webapp/host_controller.js +++ b/remoting/webapp/host_controller.js @@ -91,7 +91,6 @@ remoting.HostController.prototype.setTooltips = function() { } document.getElementById('this-host-name').title = connectStr; document.getElementById('this-host-icon').title = connectStr; - document.getElementById('this-host-spacer').title = connectStr; }; /** diff --git a/remoting/webapp/main.html b/remoting/webapp/main.html index b86bffc..81523c4 100644 --- a/remoting/webapp/main.html +++ b/remoting/webapp/main.html @@ -161,12 +161,10 @@ found in the LICENSE file. <img id="this-host-icon" src="icon_host.png" class="host-list-main-icon"> - <div id="this-host-name"></div> - <div id="this-host-spacer" class="box-spacer"> - <img id="this-host-rename" - class="host-list-edit host-list-rename-icon" - src="icon_pencil.png"> - </div> + <div id="this-host-name" class="box-spacer"></div> + <img id="this-host-rename" + class="host-list-edit host-list-rename-icon" + src="icon_pencil.png"> <button type="button" id="stop-daemon" i18n-content="HOME_DAEMON_STOP_BUTTON"> |