Skip to content

Instantly share code, notes, and snippets.

@superchris
Created May 4, 2015 21:59
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 superchris/bf97cb13b26470dc4575 to your computer and use it in GitHub Desktop.
Save superchris/bf97cb13b26470dc4575 to your computer and use it in GitHub Desktop.
JS Bin Filter example // source http://jsbin.com/pezih
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta name="description" content="Filter example" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="FruitCtrl as ctrl">
<input ng-model="ctrl.searchFruit" />
<ul>
<li ng-repeat="fruit in ctrl.fruits | filter:ctrl.searchFruit">{{fruit.name}}</li>
</ul>
<ul>
<li ng-repeat="fruit in ctrl.fruits | limitTo:2">{{fruit.name}}</li>
</ul>
<ul>
<li ng-repeat="fruit in ctrl.fruits | orderBy:'-name'">{{fruit.name}}</li>
</ul>
<script id="jsbin-javascript">
var app = angular.module("app", []);
app.controller("FruitCtrl", function() {
this.fruits = [{name: "Bananas"}, {name: "Canteloupe"}, {name: "Cherries"}, {name: "Strawberries"}, {name: "Tomatoes"}];
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">var app = angular.module("app", []);
app.controller("FruitCtrl", function() {
this.fruits = [{name: "Bananas"}, {name: "Canteloupe"}, {name: "Cherries"}, {name: "Strawberries"}, {name: "Tomatoes"}];
});</script></body>
</html>
var app = angular.module("app", []);
app.controller("FruitCtrl", function() {
this.fruits = [{name: "Bananas"}, {name: "Canteloupe"}, {name: "Cherries"}, {name: "Strawberries"}, {name: "Tomatoes"}];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment