Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(accordion): fix minification issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pkozlowski-opensource committed Mar 1, 2013
1 parent 3afcaa4 commit f4da4d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/accordion/accordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ angular.module('ui.bootstrap.accordion', ['ui.bootstrap.collapse'])
replace: true, // The element containing the directive will be replaced with the template
templateUrl:'template/accordion/accordion-group.html',
scope:{ heading:'@' }, // Create an isolated scope and interpolate the heading attribute onto this scope
controller: function($scope) {
controller: ['$scope', function($scope) {
this.setHeading = function(element) {
this.heading = element;
};
},
}],
link: function(scope, element, attrs, accordionCtrl) {
var getIsOpen, setIsOpen;

Expand Down

0 comments on commit f4da4d6

Please sign in to comment.