mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-11 08:13:10 +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;
|
position: relative;
|
||||||
top: 1em;
|
top: 1em;
|
||||||
left: 1em;
|
left: 1em;
|
||||||
|
width: 202px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebarArea {
|
#sidebarArea {
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ function DocsController($location, $browser, $window) {
|
||||||
|
|
||||||
this.selectedPartial = function(partial) {
|
this.selectedPartial = function(partial) {
|
||||||
return partial.id == self.partialId ? 'current' : '';
|
return partial.id == self.partialId ? 'current' : '';
|
||||||
}
|
};
|
||||||
|
|
||||||
this.afterPartialLoaded = function() {
|
this.afterPartialLoaded = function() {
|
||||||
SyntaxHighlighter.highlight();
|
SyntaxHighlighter.highlight();
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,7 @@ exports.copyDir = function copyDir(dir, callback) {
|
||||||
|
|
||||||
|
|
||||||
exports.merge = function(srcs, to, 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) {
|
function merge(srcs, to, callback) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue