Guest User

Untitled

a guest
Jan 22nd, 2018
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ..some code
  2. <my-Form></my-Form>
  3.  
  4. <form name="myForm">
  5. ...fields
  6.  
  7. var newData = angular.module('newData',[]);
  8.  
  9. newData.controller('DataController', function() {
  10. //would like to access form here
  11. })
  12.  
  13. newData.directive('myForm', function() {
  14. return {
  15. scope: {}
  16. templateUrl: 'myForm.html'
  17. link: function(scope, element, attrs) {
  18.  
  19. }
  20. };
  21.  
  22. })
Add Comment
Please, Sign In to add comment