Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

(fix) injectables error in header and footer. #1969

Merged
merged 1 commit into from
Apr 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/uiSelectFooterDirective.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
uis.directive('uiSelectFooter', function(uiSelectConfig){
uis.directive('uiSelectFooter', ['uiSelectConfig' ,function(uiSelectConfig){
return {
templateUrl: function (tElement) {
// Needed so the uiSelect can detect the transcluded content
Expand All @@ -12,4 +12,4 @@ uis.directive('uiSelectFooter', function(uiSelectConfig){
transclude: true,
replace: true
};
});
}]);
4 changes: 2 additions & 2 deletions src/uiSelectHeaderDirective.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
uis.directive('uiSelectHeader', function(uiSelectConfig){
uis.directive('uiSelectHeader', ['uiSelectConfig' ,function(uiSelectConfig){
return {
templateUrl: function (tElement) {
// Needed so the uiSelect can detect the transcluded content
Expand All @@ -12,4 +12,4 @@ uis.directive('uiSelectHeader', function(uiSelectConfig){
transclude: true,
replace: true
};
});
}]);