Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
49614757
Commit
49614757
authored
7 years ago
by
gnaegi
Browse files
Options
Downloads
Patches
Plain Diff
OO-2864 implement BFormatter.alignTableColumns( ) method
parent
eba0b3ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/webapp/static/js/functions.js
+28
-0
28 additions, 0 deletions
src/main/webapp/static/js/functions.js
src/main/webapp/static/js/js.plugins.min.js
+1
-1
1 addition, 1 deletion
src/main/webapp/static/js/js.plugins.min.js
with
29 additions
and
1 deletion
src/main/webapp/static/js/functions.js
+
28
−
0
View file @
49614757
...
...
@@ -225,6 +225,34 @@ var BFormatter = {
}
catch
(
e
)
{
if
(
window
.
console
)
console
.
log
(
"
error in BFormatter.formatLatexFormulas:
"
,
e
);
}
},
// Align columns of different tables with the same column count
// Note: it is best to set the width of the fixed sized colums via css
// (e.g. to 1% to make them as small as possible). Table must set to max-size:100%
// to not overflow. New width of table can be larger than before because the largest
// width of each column is applied to all tables. With max-size the browsers magically
// fix this overflow problem.
alignTableColumns
:
function
(
tableArray
)
{
try
{
var
cellWidths
=
new
Array
();
// find all widest cells
jQuery
(
tableArray
).
each
(
function
()
{
for
(
j
=
0
;
j
<
jQuery
(
this
)[
0
].
rows
[
0
].
cells
.
length
;
j
++
){
var
cell
=
jQuery
(
this
)[
0
].
rows
[
0
].
cells
[
j
];
if
(
!
cellWidths
[
j
]
||
cellWidths
[
j
]
<
cell
.
clientWidth
)
{
cellWidths
[
j
]
=
cell
.
clientWidth
;
}
}
});
// set same width to columns of all tables
jQuery
(
tableArray
).
each
(
function
()
{
for
(
j
=
0
;
j
<
jQuery
(
this
)[
0
].
rows
[
0
].
cells
.
length
;
j
++
){
jQuery
(
this
)[
0
].
rows
[
0
].
cells
[
j
].
style
.
width
=
cellWidths
[
j
]
+
'
px
'
;
}
});
}
catch
(
e
)
{
if
(
window
.
console
)
console
.
log
(
"
error in BFormatter.alignTableColumns:
"
,
e
);
}
}
};
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/static/js/js.plugins.min.js
+
1
−
1
View file @
49614757
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment