diff options
author | Marc Grabanski <m@marcgrabanski.com> | 2008-06-01 18:48:16 +0000 |
---|---|---|
committer | Marc Grabanski <m@marcgrabanski.com> | 2008-06-01 18:48:16 +0000 |
commit | 169662dc7f3b0bb46e832081fe8be1bac9f6a6be (patch) | |
tree | a940e4bcfc094f1a28a8f5930b41aa74b93ade7c /ui | |
parent | 1c6b62b19284aeb17b4560d4d4f948e627c00caf (diff) | |
download | jquery-ui-169662dc7f3b0bb46e832081fe8be1bac9f6a6be.tar.gz jquery-ui-169662dc7f3b0bb46e832081fe8be1bac9f6a6be.zip |
Added debug file to recreate any issues.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/demos/functional/datepicker/debug.html | 21 | ||||
-rw-r--r-- | ui/demos/functional/datepicker/index.html | 4 |
2 files changed, 21 insertions, 4 deletions
diff --git a/ui/demos/functional/datepicker/debug.html b/ui/demos/functional/datepicker/debug.html new file mode 100644 index 000000000..d78507612 --- /dev/null +++ b/ui/demos/functional/datepicker/debug.html @@ -0,0 +1,21 @@ +<html> + <head> + <html>Only core files for easy debug</html> + <link rel="stylesheet" href="../../../themes/ui.datepicker.css" type="text/css" media="screen" title="default" charset="utf-8"> + </head> + <body> + <input type="text" name="testing" value="click" id="testing" /> + + <!-- Include jQuery --> + <script src="../../../../jquery/jquery-1.2.6.js" type="text/javascript" charset="utf-8"></script> + + <!-- Include UI Datepicker --> + <script src="../../../source/ui.datepicker.js" type="text/javascript" charset="utf-8"></script> + + <script type="text/javascript" charset="utf-8"> + $(function(){ + $('#testing').datepicker({ yearRange: '-80:+0' }); + }); + </script> + </body> +</html>
\ No newline at end of file diff --git a/ui/demos/functional/datepicker/index.html b/ui/demos/functional/datepicker/index.html index 0b036c702..4b28d7e3a 100644 --- a/ui/demos/functional/datepicker/index.html +++ b/ui/demos/functional/datepicker/index.html @@ -17,10 +17,6 @@ <body> <div id="wrap"> <div id="content"> - <input type="text" name="testing" value="click" id="testing" /> -<script type="text/jsdemo" charset="utf-8" class="demojs"> -$('#testing').datepicker({ yearRange: '-80:+0' }); -</script> <ul id="tab_menu1" class="tabs"> <li><a href="#default">Defaults</a></li> <li><a href="#invoke">Invocation</a></li> |