diff options
author | Richard D. Worth <rdworth@gmail.com> | 2010-09-19 17:14:22 -0700 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2010-09-19 17:14:22 -0700 |
commit | 82b15951d123c7d68d50fec4a5decbc5af2816ba (patch) | |
tree | 29ca2adcadf1b7c4ceccc59ccbf2a8d81f69ab70 /demos | |
parent | bcde38de3d3d0717c43e117904f5ecb9d6d2f230 (diff) | |
download | jquery-ui-82b15951d123c7d68d50fec4a5decbc5af2816ba.tar.gz jquery-ui-82b15951d123c7d68d50fec4a5decbc5af2816ba.zip |
Dialog demo: syntax error, errant single quote from last style guide update. Fixed #6074 - Dialog: demo of modal form broken
Diffstat (limited to 'demos')
-rw-r--r-- | demos/dialog/modal-form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/dialog/modal-form.html b/demos/dialog/modal-form.html index 9c750be72..291cad37b 100644 --- a/demos/dialog/modal-form.html +++ b/demos/dialog/modal-form.html @@ -77,7 +77,7 @@ buttons: { "Create an account": function() { var bValid = true; - allFields.removeClass( "ui-state-error' ); + allFields.removeClass( "ui-state-error" ); bValid = bValid && checkLength( name, "username", 3, 16 ); bValid = bValid && checkLength( email, "email", 6, 80 ); |