| author | Grant Gayed | 2012-01-25 16:21:30 (EST) |
|---|---|---|
| committer | Silenio Quarti | 2012-01-25 16:28:17 (EST) |
| commit | 9f806b784e1981ee7936b8c431fdeae281720cb8 (patch) (side-by-side diff) | |
| tree | 55a791403a5fed1f969699337ab66439a8745786 | |
| parent | 265d5269354a4696e76ff0edf0d53f203ee9aeaf (diff) | |
| download | org.eclipse.orion.client-9f806b784e1981ee7936b8c431fdeae281720cb8.zip org.eclipse.orion.client-9f806b784e1981ee7936b8c431fdeae281720cb8.tar.gz org.eclipse.orion.client-9f806b784e1981ee7936b8c431fdeae281720cb8.tar.bz2 | |
Bug 369743 - update command presentation on Debug Connections pagev20120125-2128
| -rw-r--r-- | bundles/org.eclipse.orion.client.debug/web/connectionsTree.js | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/bundles/org.eclipse.orion.client.debug/web/connectionsTree.js b/bundles/org.eclipse.orion.client.debug/web/connectionsTree.js index 4675ed1..b85bcbe 100644 --- a/bundles/org.eclipse.orion.client.debug/web/connectionsTree.js +++ b/bundles/org.eclipse.orion.client.debug/web/connectionsTree.js @@ -76,16 +76,10 @@ define(['require', 'dojo'], function(require, dojo) { if (item.shouldDisplayActions()) { var actionsWrapper = dojo.create( "span", - {id: tableRow.id + "actionswrapper", style: {visibility: "hidden"}}, + {id: tableRow.id + "actionswrapper"}, actionColumn, "only"); - dojo.connect(tableRow, "onmouseover", tableRow, function() { - dojo.style(actionsWrapper, "visibility", "visible"); - }); - dojo.connect(tableRow, "onmouseout", tableRow, function() { - dojo.style(actionsWrapper, "visibility", "hidden"); - }); - this._commandService.renderCommands(actionsWrapper, "object", item, {}, "tool"); + this._commandService.renderCommands(actionsWrapper, "object", item, {}, "button"); } dojo.place(labelColumn, tableRow, "last"); dojo.place(actionColumn, tableRow, "last"); |

