Skip to content
Snippets Groups Projects
Commit c3c735ca authored by Lukas Raska's avatar Lukas Raska
Browse files

[XWIKI-10118] Fix typo in variable name

parent b54cb3ea
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
/* Compute the percent of the screen width of a column. Round so that the java upper rounding doesn't screw IE, and because 2 decimals should be enough for everyone. */ /* Compute the percent of the screen width of a column. Round so that the java upper rounding doesn't screw IE, and because 2 decimals should be enough for everyone. */
#set($rawComputedColumnWidth = (($columnsTotalWidth - $columnPadding * 2 * ($columns - 1)) / $columns)) #set($rawComputedColumnWidth = (($columnsTotalWidth - $columnPadding * 2 * ($columns - 1)) / $columns))
#set($computedColumnWidth = $mathtool.roundTo(2, $rawComputedColumnWidth)) #set($computedColumnWidth = $mathtool.roundTo(2, $rawComputedColumnWidth))
.container-columns-$column .column{ .container-columns-$columns .column{
width: $computedColumnWidth%; width: $computedColumnWidth%;
padding-right: $columnPadding%; padding-right: $columnPadding%;
padding-left: $columnPadding%; padding-left: $columnPadding%;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment