Skip to content

Instantly share code, notes, and snippets.

@metasansana
Last active August 29, 2015 14:14
Show Gist options
  • Save metasansana/9e6c3339b9679575c768 to your computer and use it in GitHub Desktop.
Save metasansana/9e6c3339b9679575c768 to your computer and use it in GitHub Desktop.
Generic Form as directive.
var app = angular.module('myApp', []);
app.directive('contactGeneric', function() {
return {
restrict: 'E',
templateUrl: 'contactGeneric.html'
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment