Skip to content

Commit

Permalink
Disable (but still show) not-in-list options
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Jan 3, 2014
1 parent c7c466f commit 6a92bcb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core.js
Expand Up @@ -606,7 +606,8 @@ QUnit.load = function() {
}
if ( config[ val.id ] && !selection ) {
urlConfigHtml += "<option value='" + escapeText( config[ val.id ] ) +
"' selected='selected'>" + escapeText( config[ val.id ] ) +
"' selected='selected' disabled='disabled'>" +
escapeText( config[ val.id ] ) +
"</option>";
}
urlConfigHtml += "</select>";
Expand Down

0 comments on commit 6a92bcb

Please sign in to comment.