Skip to content

Instantly share code, notes, and snippets.

@SteGriff
Last active March 1, 2017 18:02
Show Gist options
  • Select an option

  • Save SteGriff/647d8693b1de9de5bd7555045070c07c to your computer and use it in GitHub Desktop.

Select an option

Save SteGriff/647d8693b1de9de5bd7555045070c07c to your computer and use it in GitHub Desktop.
Tiny Angular Pangram App
<!DOCTYPE HTML>
<html ng-app>
<head>
<title>Tiny Angular Pangram App</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style>
.spare{color:red;}
.used{text-decoration:line-through; color:blue;}
.w-100{width:100%;}
</style>
</head>
<body>
<input class="w-100" ng-model="input" placeholder="Type in here...">
<span
ng-repeat="letter in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('')"
class="spare"
ng-class="{'used' : (input.toUpperCase().indexOf(letter) > -1)}">{{letter}} </span>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment