Skip to content

Commit

Permalink
Widget demo: Replace 'go black' with 'go screen' to keep text readable
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Apr 24, 2014
1 parent 67f5640 commit 004d768
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions demos/widget/default.html
Expand Up @@ -150,11 +150,11 @@
}); });


// click to set options after initialization // click to set options after initialization
$( "#black" ).click( function() { $( "#green" ).click( function() {
$( ":custom-colorize" ).colorize( "option", { $( ":custom-colorize" ).colorize( "option", {
red: 0, red: 64,
green: 0, green: 250,
blue: 0 blue: 8
}); });
}); });
}); });
Expand All @@ -167,7 +167,7 @@
<div id="my-widget2">color me</div> <div id="my-widget2">color me</div>
<div id="my-widget3">color me</div> <div id="my-widget3">color me</div>
<button id="disable">Toggle disabled option</button> <button id="disable">Toggle disabled option</button>
<button id="black">Go black</button> <button id="green">Go green</button>
</div> </div>


<div class="demo-description"> <div class="demo-description">
Expand Down

0 comments on commit 004d768

Please sign in to comment.