aboutsummaryrefslogtreecommitdiffstats
path: root/demos/spinner/overflow.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-08-07 12:59:50 -0400
committerScott González <scott.gonzalez@gmail.com>2011-08-07 12:59:50 -0400
commitca2211f74851a066829464e78f50c90b49eac2dd (patch)
tree6e45fc575cc50586260270202bdc170060dde716 /demos/spinner/overflow.html
parent6c84531d7ced59fc3b884aa11845c7016d4187aa (diff)
downloadjquery-ui-ca2211f74851a066829464e78f50c90b49eac2dd.tar.gz
jquery-ui-ca2211f74851a066829464e78f50c90b49eac2dd.zip
Spinner demos: Cleanup.
Diffstat (limited to 'demos/spinner/overflow.html')
-rw-r--r--demos/spinner/overflow.html58
1 files changed, 31 insertions, 27 deletions
diff --git a/demos/spinner/overflow.html b/demos/spinner/overflow.html
index 45b8f9573..d55a48b01 100644
--- a/demos/spinner/overflow.html
+++ b/demos/spinner/overflow.html
@@ -1,25 +1,25 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
- <title>jQuery UI Spinner - Default functionality</title>
- <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.6.2.js"></script>
- <script type="text/javascript" src="../../external/jquery.mousewheel-3.0.4.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.button.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.spinner.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <script type="text/javascript">
+ <title>jQuery UI Spinner - Overflow</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.6.2.js"></script>
+ <script src="../../external/jquery.mousewheel-3.0.4.js"></script>
+ <script src="../../ui/jquery.ui.core.js"></script>
+ <script src="../../ui/jquery.ui.widget.js"></script>
+ <script src="../../ui/jquery.ui.button.js"></script>
+ <script src="../../ui/jquery.ui.spinner.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <script>
$(function() {
- $("#spinner").spinner({
- spin: function(event, ui) {
- if (ui.value > 10) {
- $(this).spinner("value", -10);
+ $( "#spinner" ).spinner({
+ spin: function( event, ui ) {
+ if ( ui.value > 10 ) {
+ $( this ).spinner( "value", -10 );
return false;
- } else if (ui.value < -10) {
- $(this).spinner("value", 10);
+ } else if ( ui.value < -10 ) {
+ $( this ).spinner( "value", 10 );
return false;
}
}
@@ -30,18 +30,22 @@
<body>
<div class="demo">
- <p>
- <label for="spinner">Select a value:</label>
- <input id="spinner" name="value" />
- </p>
-</div>
+
+<p>
+ <label for="spinner">Select a value:</label>
+ <input id="spinner" name="value" />
+</p>
+
+</div><!-- End demo -->
+
+
<div class="demo-description">
- <p>
- Overflowing spinner restricted to a range of -10 to 10.
- For anything above 10, it'll overflow to -10, and the other way round.
- </p>
-</div>
+<p>
+Overflowing spinner restricted to a range of -10 to 10.
+For anything above 10, it'll overflow to -10, and the other way round.
+</p>
+</div><!-- End demo-description -->
</body>
</html>