Skip to content

Instantly share code, notes, and snippets.

@trevordixon
Forked from bclinkinbeard/gist:8853209
Last active August 29, 2015 13:56
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 trevordixon/8890731 to your computer and use it in GitHub Desktop.
Save trevordixon/8890731 to your computer and use it in GitHub Desktop.
'use strict';
var angular = require('angular');
module.exports = function LoginFormDirective ($compile) {
return {
restrict: 'E',
template: require('./loginFormTemplate.html'),
link: function (scope, element) {
// Already compiled!
}
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment