Skip to content

Commit

Permalink
Fix Bug 368875 - Clone Repository buttons inaccessible
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Li committed Jan 18, 2012
1 parent 0fb5dd1 commit b7958ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ define(['require', 'dojo', 'dijit', 'orion/commands', 'orion/util', 'orion/textv
spacer = dojo.create("span", null, parentDismiss, "last");
dojo.addClass(spacer, "dismiss");

var options = dojo.create("span", null, parentDismiss, "last");
var options = dojo.create("span", {role: "button"}, parentDismiss, "last");
dojo.addClass(options, "core-sprite-options");
dojo.addClass(options, "dismiss");
options.title = "More options...";
Expand Down

0 comments on commit b7958ec

Please sign in to comment.