AngularJS Example

by icodeforlove

HTML

<div ng-app="Application">
  {{'hello' | example:'one':'two' | uppercase}}
</div>

CSS

</style> <!-- Ugly Hack due to jsFiddle issue: http://goo.gl/BUfGZ --> 
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
<style>
​.ng-invalid { border: 1px solid red; }​

JavaScript

var Application = angular.module('Application', []);

Application.filter('example', function() {
    return function(input, one, two) {
		return one + input + two;
	}
});