diff options
| author | Vojta Jina | 2011-05-18 14:28:37 +0200 | 
|---|---|---|
| committer | Igor Minar | 2011-06-06 22:52:00 -0700 | 
| commit | 76df0db598730eeaab19599f9ee441c421423660 (patch) | |
| tree | 7a2f06787bbb3c76ff56cf46769ed610f06cd6fe /docs/src/templates/docs.js | |
| parent | e21a868524758f1fd53ea4e6f6344910874dc0eb (diff) | |
| download | angular.js-76df0db598730eeaab19599f9ee441c421423660.tar.bz2 | |
Fixed docs search input with
And couple of missing semi-colons...
Diffstat (limited to 'docs/src/templates/docs.js')
| -rw-r--r-- | docs/src/templates/docs.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/src/templates/docs.js b/docs/src/templates/docs.js index 65f8b11a..e05f0ec1 100644 --- a/docs/src/templates/docs.js +++ b/docs/src/templates/docs.js @@ -43,7 +43,7 @@ function DocsController($location, $browser, $window) {    this.selectedPartial = function(partial) {      return partial.id == self.partialId ? 'current' : ''; -  } +  };    this.afterPartialLoaded = function() {      SyntaxHighlighter.highlight(); | 
