diff --git a/server/camlistored/ui/detail.js b/server/camlistored/ui/detail.js index 6304aac5c..f8e035fcf 100644 --- a/server/camlistored/ui/detail.js +++ b/server/camlistored/ui/detail.js @@ -119,10 +119,14 @@ cam.DetailView = React.createClass({ this.eh_.dispose(); }, - handleAspectClick_: function(name) { - this.setState({ - selectedAspect: name, - }); + handleAspectClick_: function(name, e) { + // Mathieu requests that middle and right-click do nothing until we can make real URLs work. + if (e.button == 0) { + this.setState({ + selectedAspect: name, + }); + } + return false; }, handleKeyUp_: function(e) {