mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
Fixed docs search input with
And couple of missing semi-colons...
This commit is contained in:
parent
e21a868524
commit
76df0db598
3 changed files with 3 additions and 2 deletions
|
|
@ -194,6 +194,7 @@ p {
|
|||
position: relative;
|
||||
top: 1em;
|
||||
left: 1em;
|
||||
width: 202px;
|
||||
}
|
||||
|
||||
#sidebarArea {
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ function DocsController($location, $browser, $window) {
|
|||
|
||||
this.selectedPartial = function(partial) {
|
||||
return partial.id == self.partialId ? 'current' : '';
|
||||
}
|
||||
};
|
||||
|
||||
this.afterPartialLoaded = function() {
|
||||
SyntaxHighlighter.highlight();
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue