Skip to content

Commit

Permalink
rename templateUrls in directives following view renames
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsimon committed Jan 22, 2017
1 parent 7881374 commit 77a1e22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/javascripts/jobs/job.directive.js
Expand Up @@ -7,7 +7,7 @@
.directive('job', function() { .directive('job', function() {
return { return {
restrict: 'E', restrict: 'E',
templateUrl: 'views/jobs/_job.directive.html', templateUrl: 'views/jobs/_job.html',
scope: { scope: {
jobObject: '=' jobObject: '='
} }
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/jobs/job_detail.directive.js
Expand Up @@ -7,7 +7,7 @@
.directive('jobDetail', function() { .directive('jobDetail', function() {
return { return {
restrict: 'E', restrict: 'E',
templateUrl: 'views/jobs/_job_detail.directive.html', templateUrl: 'views/jobs/_job_detail.html',
controller: 'JobController as vm', controller: 'JobController as vm',
bindToController: { bindToController: {
jobObject: '=', jobObject: '=',
Expand Down

0 comments on commit 77a1e22

Please sign in to comment.