Everything is good now! I had to update templateCache
inside scripts/ui-bootstrap-tpls-0.10.0.js so I can override the behavior.
>From this code:
angular.module("template/accordion/accordion-group.html",
[]).run(["$templateCache", function($templateCache) {
$templateCache.put("template/accordion/accordion-group.html",
"<div class=\"panel panel-default\">\n" +
" <div class=\"panel-heading\">\n" +
" <h4 class=\"panel-title\">\n" +
" <a class=\"accordion-toggle\" ng-click=\"isOpen = !isOpen\"
accordion-transclude=\"heading\">{{heading}}</a>\n" +
" </h4>\n" +
" </div>\n" +
" <div class=\"panel-collapse\" collapse=\"!isOpen\">\n" +
" <div class=\"panel-body\" ng-transclude></div>\n" +
" </div>\n" +
"</div>");
}]);
to this code:
angular.module("template/accordion/accordion-group.html",
[]).run(["$templateCache", function($templateCache) {
$templateCache.put("template/accordion/accordion-group.html",
"<div class=\"panel panel-default\">\n" +
" <div class=\"panel-heading\" ng-click=\"isOpen = !isOpen\">\n" +
" <h4 class=\"panel-title\">\n" +
" <a class=\"accordion-toggle\"
accordion-transclude=\"heading\">{{heading}}</a>\n" +
" </h4>\n" +
" </div>\n" +
" <div class=\"panel-collapse\" collapse=\"!isOpen\">\n" +
" <div class=\"panel-body\" ng-transclude></div>\n" +
" </div>\n" +
"</div>");
}]);
On Tuesday, April 15, 2014 10:35:09 AM UTC-5, Neil Camara wrote:
>
> Hi folks,
>
> I'm using angular-ui-bootstrap. Currently, when I mouse over the menu, it
> just underlines it just like in the screenshot I made below. I want it to
> get highlighted similar on the lower part of the pic. I used the code from
> the http://angular-ui.github.io/bootstrap/#/accordion
>
> Here is the picture
> http://i.imgur.com/VL4E3yT.png
>
> Any help would be greatly appreciated.
>
> Thanks,
>
> Neil
>
--
You received this message because you are subscribed to the Google Groups
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.