Skip to content

Instantly share code, notes, and snippets.

@superchris
Created May 4, 2015 22:01
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/8b99cc1a431e795e6130 to your computer and use it in GitHub Desktop.
Save superchris/8b99cc1a431e795e6130 to your computer and use it in GitHub Desktop.
JS Bin Formatter/parser example // source http://jsbin.com/qofih
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta name="description" content="Formatter/parser 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.2.14/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular-sanitize.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="main">
{{text}}
<textarea upper-case ng-model="text"></textarea>
<script id="jsbin-javascript">
var app = angular.module("app", ["ngSanitize"]);
app.controller("main", function($scope) {
$scope.text = "small things";
$scope.alertHi = function() { alert("hi!"); };
});
app.directive("upperCase", function($sce){
return {
require: "ng-model",
link: function(scope, element, attrs, modelCtrl) {
modelCtrl.$formatters.push(function(value) {
return value.toUpperCase();
});
modelCtrl.$parsers.push(function(value) {
return value.toLowerCase();
});
}
};
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">var app = angular.module("app", ["ngSanitize"]);
app.controller("main", function($scope) {
$scope.text = "small things";
$scope.alertHi = function() { alert("hi!"); };
});
app.directive("upperCase", function($sce){
return {
require: "ng-model",
link: function(scope, element, attrs, modelCtrl) {
modelCtrl.$formatters.push(function(value) {
return value.toUpperCase();
});
modelCtrl.$parsers.push(function(value) {
return value.toLowerCase();
});
}
};
});</script></body>
</html>
var app = angular.module("app", ["ngSanitize"]);
app.controller("main", function($scope) {
$scope.text = "small things";
$scope.alertHi = function() { alert("hi!"); };
});
app.directive("upperCase", function($sce){
return {
require: "ng-model",
link: function(scope, element, attrs, modelCtrl) {
modelCtrl.$formatters.push(function(value) {
return value.toUpperCase();
});
modelCtrl.$parsers.push(function(value) {
return value.toLowerCase();
});
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment