Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'use strict';
  2. angular.module('tutplusApp')
  3.  
  4. .controller('DirectiveController', function() {
  5.  
  6. })
  7. .directive('myCustomer', function() {
  8.   return {
  9.     templateUrl: 'views/directive.html'
  10.   };
  11. })
  12. .directive('myTest', function() {
  13.   return {
  14.     templateUrl: 'views/curse.html'
  15.   };
  16. })
  17. .directive('modal', function() {
  18.   return {
  19.     templateUrl: 'views/directiveModal.html'
  20.   };
  21. })
  22. .directive('modal1', function() {
  23.   return {
  24.     templateUrl: 'views/directiveModal1.html'
  25.   };
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement