Skip to content

Commit

Permalink
Renamed widget-title directive to widget-header.
Browse files Browse the repository at this point in the history
  • Loading branch information
lsamayoa committed Aug 19, 2014
1 parent bf81e66 commit d523508
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
angular
.module('Dashboard')
.directive('rdWidgetTitle', rdWidgetTitle);
.directive('rdWidgetHeader', rdWidgetTitle);

function rdWidgetTitle () {
var directive = {
Expand All @@ -10,7 +10,7 @@ function rdWidgetTitle () {
icon: '@'
},
transclude: true,
template: '<div class="widget-title"> <i class="fa" ng-class="icon"></i> {{title}} <div class="pull-right" ng-transclude></div></div>',
template: '<div class="widget-header"> <i class="fa" ng-class="icon"></i> {{title}} <div class="pull-right" ng-transclude></div></div>',
restrict: 'E'
};
return directive;
Expand Down

0 comments on commit d523508

Please sign in to comment.