Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
b6d4ad83
Commit
b6d4ad83
authored
Sep 07, 2019
by
Nikita Titov
Committed by
James Lamb
Sep 07, 2019
Browse files
added JS file (#2387)
parent
33d0378f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
R-package/.Rbuildignore
R-package/.Rbuildignore
+1
-1
R-package/pkgdown/_pkgdown.yml
R-package/pkgdown/_pkgdown.yml
+0
-0
R-package/pkgdown/extra.js
R-package/pkgdown/extra.js
+6
-0
No files found.
R-package/.Rbuildignore
View file @
b6d4ad83
^build_package.R$
\.gitkeep$
^docs$
^
_
pkgdown
\.yml
$
^pkgdown$
# Objects created by compilation
\.o$
...
...
R-package/_pkgdown.yml
→
R-package/
pkgdown/
_pkgdown.yml
View file @
b6d4ad83
File moved
R-package/pkgdown/extra.js
0 → 100644
View file @
b6d4ad83
$
(
function
()
{
if
(
window
.
location
.
pathname
.
toLocaleLowerCase
().
indexOf
(
'
/r/reference
'
)
!=
-
1
)
{
/* Replace '/R/' with '/R-package/R/' in all external links to .R files of LightGBM GitHub repo */
$
(
'
a[href^="https://github.com/Microsoft/LightGBM/blob/master/R"][href*=".R"]
'
).
attr
(
'
href
'
,
(
i
,
val
)
=>
{
return
val
.
replace
(
'
/R/
'
,
'
/R-package/R/
'
);
});
}
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment