Skip to content

Instantly share code, notes, and snippets.

@dalemanthei
Created January 24, 2016 22:40
Show Gist options
  • Save dalemanthei/3c43800882cb570aeae0 to your computer and use it in GitHub Desktop.
Save dalemanthei/3c43800882cb570aeae0 to your computer and use it in GitHub Desktop.
Jasmine-helper-compileDirective.js
var compileDirective = function (html, scope) {
element = $compile(angular.element(html))(scope);
scope.$digest();
return element;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment