diff options
| author | Peter Bacon Darwin | 2014-02-15 20:46:50 +0000 | 
|---|---|---|
| committer | Peter Bacon Darwin | 2014-02-16 19:03:45 +0000 | 
| commit | ecdb9a5688df3dc9c7c436574d5ec135354d11de (patch) | |
| tree | 284079a06898610f1ce319345f7d882b2ebad803 /docs/content/guide/directive.ngdoc | |
| parent | c6f406f03b53cb6948afdd4720e54b134e463650 (diff) | |
| download | angular.js-ecdb9a5688df3dc9c7c436574d5ec135354d11de.tar.bz2 | |
docs(*): fix jshint issues in examples
Diffstat (limited to 'docs/content/guide/directive.ngdoc')
| -rw-r--r-- | docs/content/guide/directive.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 95aae48f..6c81419a 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -791,7 +791,7 @@ element?              $document.unbind('mousemove', mousemove);              $document.unbind('mouseup', mouseup);            } -        } +        };        });    </file>    <file name="index.html"> @@ -829,7 +829,7 @@ to which tab is active.              };              this.addPane = function(pane) { -              if (panes.length == 0) { +              if (panes.length === 0) {                  $scope.select(pane);                }                panes.push(pane); | 
