Selectmenu: Remove colons from labels, annoying for screenreader-users. Cleanup whitespace.

This commit is contained in:
Jörn Zaefferer 2012-12-09 12:36:35 +01:00
parent 7a05c65644
commit 15032d17d9
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@
<form action="#">
<fieldset>
<label for="speed">Select a speed:</label>
<label for="speed">Select a speed</label>
<select name="speed" id="speed">
<option value="Slower">Slower</option>
<option value="Slow">Slow</option>
@ -48,7 +48,7 @@
<br />
<br />
<br />
<label for="files">Select a file:</label>
<label for="files">Select a file</label>
<select name="files" id="files">
<optgroup label="Scripts">
<option value="jquery">jQuery.js</option>
@ -62,7 +62,7 @@
<br />
<br />
<br />
<label for="number">Select a number:</label>
<label for="number">Select a number</label>
<select name="number" id="number">
<option value="1">1</option>
<option value="2" selected="selected">2</option>

View File

@ -235,7 +235,7 @@ $.widget( "ui.selectmenu", {
if ( !this.isOpen ) {
return;
}
var id = this._getSelectedItem().find( "a" ).attr( "id" );
this.isOpen = false;
this._toggleAttr();