Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
0b2cfcfd
Commit
0b2cfcfd
authored
May 06, 2015
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3976 from SpecLad:rm-insertIframe
parents
9c02caf3
007a3ef8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
14 deletions
+1
-14
insertIframe.js
doc/_static/insertIframe.js
+0
-12
layout.html
doc/_themes/blue/layout.html
+0
-1
conf.py
doc/conf.py
+1
-1
No files found.
doc/_static/insertIframe.js
deleted
100644 → 0
View file @
9c02caf3
function
insertIframe
(
elementId
,
iframeSrc
)
{
var
iframe
;
if
(
document
.
createElement
&&
(
iframe
=
document
.
createElement
(
'iframe'
)))
{
iframe
.
src
=
unescape
(
iframeSrc
);
iframe
.
width
=
"100%"
;
iframe
.
height
=
"511px"
;
var
element
=
document
.
getElementById
(
elementId
);
element
.
parentNode
.
replaceChild
(
iframe
,
element
);
}
}
doc/_themes/blue/layout.html
View file @
0b2cfcfd
...
...
@@ -11,7 +11,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
{%- endblock %}
{% set script_files = script_files + [pathto("_static/insertIframe.js", 1)] %}
{%- set reldelim1 = reldelim1 is not defined and '
»
' or reldelim1 %}
{%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
...
...
doc/conf.py
View file @
0b2cfcfd
...
...
@@ -132,7 +132,7 @@ html_logo = 'opencv-logo-white.png'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path
=
[
'_static'
]
#html_static_path = [
]
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
...
...
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