Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Fractalis
fractal.js
Commits
0cebaefc
Commit
0cebaefc
authored
May 03, 2017
by
Sascha Herzinger
Browse files
fixed visual glitch that in firefox
parent
4679accb
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/components/charts/CorrelationAnalysis.vue
View file @
0cebaefc
...
...
@@ -45,11 +45,11 @@
</tr>
</table>
<svg
width=
"100%"
height=
"100%"
v-show=
"! shownAnalysisResults.init"
>
<g
:
style=
"
{
transform
:
`translate(${margin.left}
px
, ${margin.top}
px)` }
">
<g
id=
"x-axis-1"
class=
"fjs-corr-axis"
:
style=
"
{
transform
:
`translate(0
px
, ${padded.height}
px)` }
">
</g>
<g
:transform
=
"
`translate($
{margin.left}, ${margin.top}
)`
">
<g
id=
"x-axis-1"
class=
"fjs-corr-axis"
:transform
=
"
`translate(0, $
{padded.height}
)`
">
</g>
<g
id=
"x-axis-2"
class=
"fjs-corr-axis"
></g>
<g
id=
"y-axis-1"
class=
"fjs-corr-axis"
></g>
<g
id=
"y-axis-2"
class=
"fjs-corr-axis"
:
style=
"
{
transform
:
`translate(${padded.width}
px
, 0
px)` }
">
</g>
<g
id=
"y-axis-2"
class=
"fjs-corr-axis"
:transform
=
"
`translate($
{padded.width}, 0
)`
">
</g>
<g
id=
"brush"
></g>
<text
:x=
"padded.width / 2"
y=
"-10"
...
...
webpack.config.js
View file @
0cebaefc
...
...
@@ -11,7 +11,7 @@ const library = 'fractal'
if
(
env
===
'
production
'
)
{
plugins
.
push
(
new
webpack
.
optimize
.
UglifyJsPlugin
({
minimize
:
true
}))
plugins
.
push
(
new
webpack
.
DefinePlugin
({
'
process.env
'
:
{
'
NODE_ENV
'
:
JSON
.
stringify
(
'
production
'
)
}}))
plugins
.
push
(
new
webpack
.
DefinePlugin
({
'
process.env
'
:
{
NODE_ENV
:
'
"
production
"
'
}}))
filename
=
library
+
'
.min.js
'
}
else
{
filename
=
library
+
'
.js
'
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment