aboutsummaryrefslogtreecommitdiffstats
path: root/demos/effect/show.html
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-21 00:12:17 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-21 08:06:24 -0400
commitde242d8ca9bf2b90237c413cb91601541798bae9 (patch)
tree42658e1e9ed913dbb5a7c11291df74531f503995 /demos/effect/show.html
parent009850abbfb78e2334aaf9265abf5a7705a2abf0 (diff)
downloadjquery-ui-de242d8ca9bf2b90237c413cb91601541798bae9.tar.gz
jquery-ui-de242d8ca9bf2b90237c413cb91601541798bae9.zip
Effects: Style updates
Ref #14246 Ref gh-1588
Diffstat (limited to 'demos/effect/show.html')
-rw-r--r--demos/effect/show.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/effect/show.html b/demos/effect/show.html
index 4bb0919e4..19a6cca97 100644
--- a/demos/effect/show.html
+++ b/demos/effect/show.html
@@ -18,7 +18,7 @@
// get effect type from
var selectedEffect = $( "#effectTypes" ).val();
- // most effect types need no options passed by default
+ // Most effect types need no options passed by default
var options = {};
// some effects have required parameters
if ( selectedEffect === "scale" ) {
@@ -27,7 +27,7 @@
options = { to: { width: 280, height: 185 } };
}
- // run the effect
+ // Run the effect
$( "#effect" ).show( selectedEffect, options, 500, callback );
};
@@ -38,7 +38,7 @@
}, 1000 );
};
- // set effect from select menu value
+ // Set effect from select menu value
$( "#button" ).on( "click", function() {
runEffect();
});