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 | |
| 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')
| -rw-r--r-- | docs/src/templates/docs.css | 1 | ||||
| -rw-r--r-- | docs/src/templates/docs.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/src/templates/docs.css b/docs/src/templates/docs.css index 3c7434ee..5750d4f9 100644 --- a/docs/src/templates/docs.css +++ b/docs/src/templates/docs.css @@ -194,6 +194,7 @@ p { position: relative; top: 1em; left: 1em; + width: 202px; } #sidebarArea { 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(); |
