Created
October 12, 2015 09:10
-
-
Save mihailik/9ab1655d6fd9bbfa9d59 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<title>Demo Knockout</title> | |
<script src="http://knockoutjs.com/downloads/knockout-3.3.0.debug.js"></script> | |
<h2 data-bind="style: {opacity: Math.random() > 0.5 ? 0.5 : 0.2 }" style="font-size: 120%;"> | |
OK something here | |
</h2> | |
<script> | |
ko.applyBindings({}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment