Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the tabs example on the AngularJS homepage. I essentially just pulled that code out verbatim so it looks like this:

app.directive('tabs', function() {
    return {
        restrict: 'E',
        transclude: true,
        scope: {},
        controller: function($scope, $element) {
            var panes = $scope.panes = [];

            $scope.select = function(pane) {
                angular.forEach(panes, function(pane) {
                    pane.selected = false;
                });
                pane.selected = true;
            }

            this.addPane = function(pane) {
                if (panes.length == 0) $scope.select(pane);
                panes.push(pane);
            }
        },
        template:
            '<div class="tabbable">' +
                '<ul class="nav nav-tabs">' +
                '<li ng-repeat="pane in panes" ng-class="{active:pane.selected}">'+
                '<a href="" ng-click="select(pane)">{{pane.title}}</a>' +
                '</li>' +
                '</ul>' +
                '<div class="tab-content" ng-transclude></div>' +
                '</div>',
        replace: true
    };
});

app.directive('pane', function() {
        return {
            require: '^tabs',
            restrict: 'E',
            transclude: true,
            scope: { title: '@' },
            link: function(scope, element, attrs, tabsCtrl) {
                tabsCtrl.addPane(scope);
            },
            template:
                '<div class="tab-pane" ng-class="{active: selected}" ng-transclude>' +
                    '</div>',
            replace: true
        };
    })

This is working great except in IE8 the actual tabs that you click on to change the current tab are missing and I get this console error:

  Error: No controller: tabs<div class=tab-pane title="Change Log" ng-class="{active: selected}" ng-transclude>

What could be going wrong in IE8?

share|improve this question
It works in every major browser I need to support except IE8. I would create a plnkr but plnkr doesn't work in IE8 either... – Dustin Nov 12 '12 at 19:15
Check out this post stackoverflow.com/questions/13184063/… – maxisam Nov 12 '12 at 19:45
I am doing document.createElement('tabs') and document.createElement('pane'). This is something I am already aware of and have other directives working beautifully in IE8. Is there something else here that I am missing? – Dustin Nov 12 '12 at 20:01
It's hard to say. do you have ' <!doctype html>' ? – maxisam Nov 12 '12 at 20:07
yes <!DOCTYPE html> – Dustin Nov 12 '12 at 20:22
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.