W8 Tile Directives

HTML

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://css-tricks.com/examples/HorzScrolling/jquery.mousewheel.js"></script>
 <body ng-app ng-init="names=[{id:'1',name:'Jithesh'},{id:'2',name:'Rahul'},{id:'3',name:'Adithyan'}]">
    <input type="text" ng-model="custName"/>
     <div ng-repeat="person in names | filter:custName | orderBy : 'id'">
      {{person.name | uppercase}}
    </div>
</body>