Fixed docs search input with

And couple of missing semi-colons...
This commit is contained in:
Vojta Jina 2011-05-18 14:28:37 +02:00 committed by Igor Minar
parent e21a868524
commit 76df0db598
3 changed files with 3 additions and 2 deletions

View file

@ -194,6 +194,7 @@ p {
position: relative;
top: 1em;
left: 1em;
width: 202px;
}
#sidebarArea {

View file

@ -43,7 +43,7 @@ function DocsController($location, $browser, $window) {
this.selectedPartial = function(partial) {
return partial.id == self.partialId ? 'current' : '';
}
};
this.afterPartialLoaded = function() {
SyntaxHighlighter.highlight();

View file

@ -92,7 +92,7 @@ exports.copyDir = function copyDir(dir, callback) {
exports.merge = function(srcs, to, callback){
merge(srcs.map(function(src) { return 'docs/src/templates/' + src }), OUTPUT_DIR + to, callback);
merge(srcs.map(function(src) { return 'docs/src/templates/' + src; }), OUTPUT_DIR + to, callback);
};
function merge(srcs, to, callback) {