diff --git a/lib/doc/browse/google-code-prettify/prettify-own.css b/lib/doc/browse/google-code-prettify/prettify-own.css
index e0be78bf8..942d5b7a7 100644
--- a/lib/doc/browse/google-code-prettify/prettify-own.css
+++ b/lib/doc/browse/google-code-prettify/prettify-own.css
@@ -100,13 +100,9 @@ ol.linenums
color:#eee;
margin:0 0 0 1em;
}
-ol.linenums li
-{
- border-left: 1px solid #CCC;
- }
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8
{
- list-style-type:none
+ /* list-style-type:none */
}
li.L0,li.L2,li.L4,li.L6,li.L8
{
diff --git a/lib/doc/browse/index.html b/lib/doc/browse/index.html
index 7fc5b74b1..bdae3eac3 100644
--- a/lib/doc/browse/index.html
+++ b/lib/doc/browse/index.html
@@ -32,8 +32,9 @@
0 items
-
-
+
+
+
diff --git a/lib/doc/browse/script.js b/lib/doc/browse/script.js
index 0a6dd9180..5c07294dd 100644
--- a/lib/doc/browse/script.js
+++ b/lib/doc/browse/script.js
@@ -231,8 +231,9 @@ $(document).ready(function() {
// Custom selector
$.expr[':'].match = function(a,b,c) {
+ var obj = $(a);
var needle = c[3];
- var haystack = $(a).attr('name');
+ var haystack = obj.attr('name');
if (haystack == undefined)
return false;
if ($("#case_sensitive").is(":checked"))
@@ -251,6 +252,9 @@ $(document).ready(function() {
} else {
$("#scope_list tr").show();
}
+ if ($("#show_local").is(":checked") ) {
+ $("#scope_list tr.indir").hide();
+ }
} catch (error) {
alert(error.message);
}
@@ -276,4 +280,6 @@ $(document).ready(function() {
runfilter();
});
$("#case_sensitive").change(runfilter);
+ $("#show_all").change(runfilter);
+ $("#show_local").change(runfilter);
});
diff --git a/lib/doc/browse/style.css b/lib/doc/browse/style.css
index ab8117b94..78ce05946 100644
--- a/lib/doc/browse/style.css
+++ b/lib/doc/browse/style.css
@@ -143,8 +143,8 @@ dt
}
footer
{
- padding: 0.5em;
+ padding-left: 0.5em;
border-top: 1px solid #999;
- margin-top: 2em;
+ margin-top: 1em;
color:#333;
}