* lib/rdoc: Import RDoc 4.0.0.rc.2
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b99c3e74a1
commit
6d0647c350
@ -1,3 +1,7 @@
|
|||||||
|
Wed Feb 6 17:05:26 2013 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
* lib/rdoc: Import RDoc 4.0.0.rc.2
|
||||||
|
|
||||||
Mon Feb 4 02:22:49 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
Mon Feb 4 02:22:49 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
* test/ruby/test_process.rb (test_setsid): ensure to call
|
* test/ruby/test_process.rb (test_setsid): ensure to call
|
||||||
|
@ -64,7 +64,7 @@ module RDoc
|
|||||||
##
|
##
|
||||||
# RDoc version you are using
|
# RDoc version you are using
|
||||||
|
|
||||||
VERSION = '4.0.0.preview3.1'
|
VERSION = '4.0.0.rc.2'
|
||||||
|
|
||||||
##
|
##
|
||||||
# Method visibilities
|
# Method visibilities
|
||||||
|
@ -109,7 +109,8 @@ function hookSearch() {
|
|||||||
function highlightTarget( anchor ) {
|
function highlightTarget( anchor ) {
|
||||||
console.debug( "Highlighting target '%s'.", anchor );
|
console.debug( "Highlighting target '%s'.", anchor );
|
||||||
|
|
||||||
$("a[name=" + anchor + "]").each( function() {
|
$("a[name]").each( function() {
|
||||||
|
if ( $(this).attr("name") == anchor ) {
|
||||||
if ( !$(this).parent().parent().hasClass('target-section') ) {
|
if ( !$(this).parent().parent().hasClass('target-section') ) {
|
||||||
console.debug( "Wrapping the target-section" );
|
console.debug( "Wrapping the target-section" );
|
||||||
$('div.method-detail').unwrap( 'div.target-section' );
|
$('div.method-detail').unwrap( 'div.target-section' );
|
||||||
@ -117,6 +118,7 @@ function highlightTarget( anchor ) {
|
|||||||
} else {
|
} else {
|
||||||
console.debug( "Already wrapped." );
|
console.debug( "Already wrapped." );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user