JobRouter.Module.js 239 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13
'use strict'
angular.module('myHR')
.directive('jobRouter', function(){
  return {
    restrict: 'E',
    scope: {
      obj: '=router',
      appid: '=appid'
    },
    controller: 'JobRouter',
    templateUrl: '../jobrouter.html'
  }
})