Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-app="app">
  
  <div ng-controller="ctrl">
    
    <div>
      <h3 ng-click="func"> clickety </h3>
    </div>
    
  </div>
</body>
</html>
 
var deps = [];
var app  = angular.module('app', deps);
app.config(function ($provide) {
  $provide.decorator('ngClickDirective', function ($delegate, $parse) {
    var directive   = $delegate[0];
    var origCompile = directive.compile;
    directive.compile = function (el, attrs) {
      origCompile.apply(this, arguments);
     
      return function (scope, el, attrs) {
        var fn = attrs.ngClick;
       
        el.on('click', function (event) {
          scope.$apply(function () {
            if (!scope[fn]) {
              return;
            }
            
            if (typeof scope[fn] !== 'function') {
              throw new Error('You misusing me?');
            }
            
            scope[fn].call(scope, event);
          });
        });          
      };
    };    
    
    return $delegate;
  });
});
app.controller('ctrl', function ($scope) {
  
  $scope.func = function (e) {
    console.log(this);
    console.log(e);
  };
});
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers