From ec93f94cc944e86da5a7332e079e140a4ef33ea6 Mon Sep 17 00:00:00 2001 From: mtaran-google Date: Wed, 2 Oct 2013 16:20:19 -0700 Subject: docs(guide/directive): fix indentation in example code Closes #4241 --- docs/content/guide/directive.ngdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index f72f2bb5..7ebf3f88 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -647,10 +647,10 @@ Following is an example of building a reusable widget. '', // The linking function will add behavior to the template link: function(scope, element, attrs) { - // Title element + // Title element var title = angular.element(element.children()[0]), - // Opened / closed state - opened = true; + // Opened / closed state + opened = true; // Clicking on title should open/close the zippy title.bind('click', toggle); -- cgit v1.2.3