Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div ng-app="myApp" ng-init="hello = 'hello1'">
    <h5>With Default Text:</h5>
    <paragraph pgtext="foo" pgmodel="bar"></paragraph>
    
    <paragraph pgtext="{{hello}}" pgmodel="bar"></paragraph>
    
    <h5>Without Default Text:</h5>
    <paragraph pgmodel="bar"></paragraph>
    
    <h5>With Binding</h5>
    <paragraph>{{bar}}</paragraph>
    
    <hr>
    Try typing something: <input type="text" ng-model="bar">
    
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular.min.js"></script>
  </div>
</body>
</html>
 
angular.module('myApp',[]);
angular.module('myApp').directive('paragraph', function() {
return {
    restrict: 'E',
    transclude: true,
    scope: {
      pgmodel: '=',
      pgtext: '@'
    },
    template: '<p ng-transclude>{{pgmodel || pgtext}}</p>'
  }
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
mamos98pro
0viewers