Skip to content

Instantly share code, notes, and snippets.

@walterdavis
Created June 30, 2011 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save walterdavis/1056871 to your computer and use it in GitHub Desktop.
Save walterdavis/1056871 to your computer and use it in GitHub Desktop.
var n = 0.1;
$('plus').observe(
'click',
function(evt){
s.setValue((s.value + n) < 1 ? s.value + n : 1);
}
);
$('minus').observe(
'click',
function(evt){
s.setValue((s.value - n) > 0 ? s.value - n : 0);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment