diff options
author | Hans Hillen <hans.hillen@gmail.com> | 2011-05-30 23:37:14 +0200 |
---|---|---|
committer | Hans Hillen <hans.hillen@gmail.com> | 2011-05-30 23:37:14 +0200 |
commit | 6d01873dd8cbfcee6c5a32d4ea1ff08db7b2406c (patch) | |
tree | 2a2a3097ffa8fc64fdf625530c75fef670742980 /demos | |
parent | ab2bbd3bab8c0dd106fe1a1ca4ae4d5f30e97986 (diff) | |
download | jquery-ui-6d01873dd8cbfcee6c5a32d4ea1ff08db7b2406c.tar.gz jquery-ui-6d01873dd8cbfcee6c5a32d4ea1ff08db7b2406c.zip |
Fix various pull request comments and coding standards issues
Diffstat (limited to 'demos')
-rw-r--r-- | demos/popup/default.html | 32 |
1 files changed, 13 insertions, 19 deletions
diff --git a/demos/popup/default.html b/demos/popup/default.html index ecfeaaf5b..accd2b31a 100644 --- a/demos/popup/default.html +++ b/demos/popup/default.html @@ -29,7 +29,7 @@ <style type="text/css"> .ui-popup { position: absolute; z-index: 5000; } .ui-menu { width: 200px; } - + /* table { border-collapse: collapse; @@ -54,26 +54,20 @@ <body> <div class="demo"> - <a href="#login-form">Log In</a> + <a href="#login-form">Log In</a> <div class="ui-widget-content" id="login-form" aria-label="Login options"> - <form> - <div> - <label for="un">Username</label> - <input type="text" id="un" /> - </div> - <div> - <label for="pw">Password</label> - <input type="password" id="pw" /> - </div> - <div> - <input type="submit" value="Login" class="submit" /> - </div> - </form> + <div> + <label for="un">Username</label> + <input type="text" id="un" /> + </div> + <div> + <label for="pw">Password</label> + <input type="password" id="pw" /> + </div> + <div> + <input type="submit" value="Login" class="submit" /> + </div> </div> - - - - </div> <div class="demo-description"> |