-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Worked on Tagging control. Removed Tags Controller because it was interfering with the angular-tags controller
- Loading branch information
Showing
4 changed files
with
31 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
angular.module('bawApp.tags', []) | ||
|
||
.controller('TagsCtrl', ['$scope', '$resource', '$routeParams', 'Tag', | ||
|
||
function TagsCtrl($scope, $resource, $routeParams, Tag) { | ||
|
||
}]) | ||
|
||
.controller('TagCtrl', ['$scope', '$resource', '$routeParams', 'Tag', | ||
|
||
|
||
function TagCtrl($scope, $resource, $routeParams, Tag) { | ||
|
||
}]); | ||
// these controller names conflicted with the angular-tags component. | ||
// since we don't use them they have been disabled. | ||
// .controller('zzzzzzzzzzzzzzzzzzTagsCtrl', ['$scope', '$resource', '$routeParams', 'Tag', | ||
// | ||
// function TagsCtrl($scope, $resource, $routeParams, Tag) { | ||
// | ||
// }]) | ||
// | ||
// .controller('zzzzzzzzzzzzzTagCtrl', ['$scope', '$resource', '$routeParams', 'Tag', | ||
// | ||
// | ||
// function TagCtrl($scope, $resource, $routeParams, Tag) { | ||
// | ||
// }]) | ||
; |