This repository was archived by the owner on Apr 12, 2024. It is now read-only.
  
  
  
  
  
Description
angular.widget('example', function(compileElement1,compileElement2) {
  assert(compileElement1 == compileElement2); // ???
  return function(instanceElement) {
    // ...
  };
}, {$inject: ['$defer']});
The $inject doesn't do anything here like it would on services, and the compile function has two arguments and both are the jquery wrapped element.
It's lame to need to use the angular.extend trick to get injection in the instance function.